Programming c++ Definition and 11 Threads

  1. R

    Comp Sci Unfamiliar Compilation Errors In a Linked List Class (C++)

    Hi all. I'm working on my final project for a class. The assignment is to have a linked list of personal records, and then do some things with it. Right now I'm working on the linked list class "List.h". I've implemented a Person class "Person.h" as a composition of 3 subclasses "Address.h"...
  2. martusa

    Comp Sci Drawing Figures in C++: Put Circle Pattern in Square

    i only managed to draw a square and don’t know how to put circle pattern inside of it #include <stdio.h> int main() { int totalrowcol; printf("Enter the number of rows: "); scanf_s("%d", &totalrowcol); for (int rowno = 1; rowno <= totalrowcol; rowno++) { for (int...
  3. KonaGorrila

    C/C++ Suggested books to supplement learning C and C++ programing?

    Aloha, I am wanting to teach myself C and C++ programming languages and before I purchase any books or materials on the subject. I would like to see if anyone has any recommendations?, and the pros and cons if any, ect.
  4. D

    Programs Programming courses useful for physics majors?

    I'm a physics undergrad and was wondering which programming classes are most useful/beneficial; python, linux, c++, java, etc...
  5. sukalp

    What is online test series for exams?

    i wanted to ask you that i am having financial problem for preparing for exams for getting admission into international universities. are there online test series for physics,chemistry,maths in free
  6. sukalp

    Efficient Download of PDF from Teacher's Google Drive

    hello i wanted to ask you that if we have a teacher website name. when we open pdf of his website it opens in google drive. when i opened c++ assignments file was zipping download is taking time but i am unable to download. what is the correct procedure for downloading pdf of google drive
  7. Prof. 27

    Comp Sci Problem with C++ Information Structures, Pointers, Arrays

    Homework Statement So I'm getting an error when I try to compile my C++ code: Debug Error Abort() has been called I have commented the code reasonably well, but the idea of the program is to take a file, separate the contents in each line to a part of a structure containing: Product Lookup...
  8. MAKK

    MATLAB How to Convert Matlab Gaussian Cone Code to C++?

    anyone help me to convert this sample code of Gaussian Cone shape of random number code in Matlab into C++ function GaussianCone clear all; clc; mx=10000; my=mx; mz=mx; z=[1:1:mz]'; sigma=0.01; R=0.5; mu=0; sigmax=sigma+R*z; sigmay=sigma+R*z; x=zeros(mx,1)...
  9. Prof. 27

    Why Am I Getting Two Blocks of Zeroes in My Console Output?

    Homework Statement So, I'm getting two blocks of zeroes in my console output from this program. After much effort (and stack exchange) I'm still unable to get it working. Could someone point me to a solution? Mod note: Added code tags Homework Equations #include<iostream> #include<iomanip>...
  10. D

    C/C++ Where Can I Find Good Resources for Learning C++ and Game Programming?

    Hey, guys, I would like to learn about programming in C++. Could you point out good pdf textbook or material about this? What about game programming, where should I really start? I would really appreciate the help. Thanks
  11. H

    Troubleshooting C++ Code: How to Fix Input Issues in a Programming Project

    I am working on a project, I am attaching my code and the Solutions...im not sure wat is wrong w/ the code, but i couldn't get it to ask for "Inputting a value for a" at all...i was able to get it to input theta1 and theta2 though. Plz help me out ASAP...I want to attach my assignment pages...
Back
Top