not getting output

Newbie Member
11Mar2012,21:34   #1
vjkumar's Avatar
#include <stdio.h>

int sum (int, int);

int
main (void)
{
int total;

total = sum (2, 3);
printf ("Total is %d\n", total);

return 0;
}

int
sum (int a, int b)
{
return a + b;
}
there's no error in this program but still not seeing output just a blank screen flashes.....
Go4Expert Member
12Mar2012,05:29   #2
Chong's Avatar
Hi
Execute the program in IDE or put getchar() at the end of the program. The DOS screen(?!) is at the moment outputing the result and closing at the end. That is why you see the flash.
Best regards
Chong
vjkumar likes this
Go4Expert Member
12Mar2012,17:02   #3
dearvivekkumar's Avatar
Which IDE are you using? If you are using Visual studio then run it by pressing "CTRL + F5"
How are you trying to run the code?
use getchar() just before the "return 0" statement
vjkumar likes this
Newbie Member
12Mar2012,18:58   #4
vjkumar's Avatar
guys thank u very much.....i'm kind of new in programming.....just mere begginner.....can u guys please tell me how can i learn the c strong.......the book i have lacks the bits and pieces.......and can i expect to interact with networks and websites with c.....?