Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #27.9K
Ranked #3K
~1K People Reached
Favorite Forums
Favorite Tags
Member Avatar for aasi007onfire

in our college we have a repeated C aptitude question... which goes like this.... [code] int i=5 printf("%d %d %d", i--,i,i++) [/code] and the answer given to us was 5,6,5.... when asked it was said that the compiler evaluates printf from right to left...... can somebody throw some light on …

Member Avatar for deceptikon
0
273
Member Avatar for harshchandra

is there anyway to print out any string on stdout without using semicolon at the end... ?? plzz reply

Member Avatar for Nick Evan
0
394
Member Avatar for Firestone

I'm trying to write a program to reverse a string, letter by letter. This was my latest attempt: [CODE] #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char oldMsg[100], newMsg[100]; int cd = 12, cu = 0; strcpy(newMsg, "Hello World!"); while (cd > 0) { newMsg[cu] = oldMsg[cd]; cu++; …

Member Avatar for Firestone
0
149
Member Avatar for aasi007onfire

can someone give me of a list of escape sequences in C..... i would like to know all of them if possible..... thanks in advance...

Member Avatar for TkTkorrovi
0
101
Member Avatar for arunprashanth

Hi I am running jboss 4.0.4 in fedora linux server. when i run jboss run.sh. It properly run. how to stop run.sh file. if i press ctrl+z it stopped. again i start means, the following error occurs. Error occurred during initialization of VM Could not reserve enough space for object …

Member Avatar for ranjani
0
86