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
~597 People Reached
Favorite Forums
Favorite Tags
c++ x 5
Member Avatar for Faramba

if: static char s2[]="Catbert"; static char s3[]= "Ratbert"; what is the vvalue of strcmp(s2, s3)<0 "Please explain"

Member Avatar for Dave Sinkula
0
181
Member Avatar for Faramba

Please help me with this: Declare an integer array named "scores" to contain 50 elements. & Generate a code (a loop) that will initialize every element in the array from the above declaration("scores") to the value 75.

Member Avatar for jwenting
0
142
Member Avatar for Faramba

Are the following array declarations valid, if not why?: "i'm confused!" const int SIZE=4; void main() { int a[SIZE]= {0,2,4,6}; static int b[SIZE]={0,2,4,6,8}; int x[SIZE-5]; int d[SIZE*2]; . . . . . . }

Member Avatar for Richard Wong
0
104
Member Avatar for Faramba

How does the following print?: #include <iostream.h> #include <string.h> void main() { char s[50]; strcpy (s, "What "); strcat (s, "does this " ); strcat (s, "do?"); cout << s << endl; } Can you explain?

Member Avatar for Dave Sinkula
0
78
Member Avatar for Faramba

How can we print the output of the program(which is in the black environment, dos form)in the c++ visual studio 6 compiler?

Member Avatar for Extreme
0
92