Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~11.9K People Reached
About Me

persistent

Interests
music and technology
PC Specs
Pentium(R) Dual-Core CPU 3.00GHz - 3,00 GB RAM
Favorite Tags

11 Posted Topics

Member Avatar for Dave Sinkula

C++ How to Program (Early Objects Version) (9th Edition) (Deitel, How to Program). For me it's very good, for all knowledge levels.

Member Avatar for shahidali6
11
10K
Member Avatar for espadafajar
Member Avatar for yeyo_1

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; }

Member Avatar for yeyo_1
0
185
Member Avatar for Tlotleng

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); …

Member Avatar for Neuman
0
283
Member Avatar for tentrabyte
Member Avatar for Neuman
0
109
Member Avatar for Neuman

Does anyone know a good program that I can train programming on my ipad? Thanks

Member Avatar for Morganstevens
0
119
Member Avatar for xNeverx
Member Avatar for dp121307
Member Avatar for Ancient Dragon
0
298
Member Avatar for Neuman

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

Member Avatar for kal_crazy
0
485
Member Avatar for hendraligawan

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.

Member Avatar for Ancient Dragon
0
107
Member Avatar for Neuman

The job market for c + + programmer is promising? And where it gets the best jobs? Thank you,

Member Avatar for Neuman
0
70

The End.