No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
11 Posted Topics
C++ How to Program (Early Objects Version) (9th Edition) (Deitel, How to Program). For me it's very good, for all knowledge levels.
Do you want to make it in C++ ?
This way also works: #include <iostream> #include <stdio.h> using namespace std; int main () { int num1 = 5, num2 = 10; if (num1 < num2) printf("%d is less than %d", num1, num2); else printf("%d isn't less than %d", num1, num2); return 0; }
This maybe can help you: // classes example #include <iostream> using namespace std; class Rectangle { int width, height; public: void set_values (int,int); int area() {return width*height;} }; void Rectangle::set_values (int x, int y) { width = x; height = y; } int main () { Rectangle rect; rect.set_values (3,4); …
The function *toascii* can show ASCII values too: `int toascii(int c);`
Does anyone know a good program that I can train programming on my ipad? Thanks
Hi fellows, My question is: Is It possible to work with GUI(Graphical User Interface) in C++? Or Is it not the ideal computer language for this? Thanks
I think the idea is to show the current time, but for this class should use a TIME function of the C + + library. Not sure why the class is using a pointer instead. It makes no sense to me.
The job market for c + + programmer is promising? And where it gets the best jobs? Thank you,
The End.