skip to main |
skip to sidebar
RSS Feeds
Now maintained at http://www.prithviraj.com.np
Now maintained at http://www.prithviraj.com.np
Monday, October 24, 2011
By Unknown
Here is a simple program that will print sum of two variables. As you learnt in previous post, you will include header file(s) then open body of program.
#include#include void main() { int a=5,b=7,c; c=a+b; printf("Sum of Two Number is %d.",c); getch(); }
We will discuss about data types in next post. Keep checking.
Post a Comment
Feel free to write,
I will surely read your comment and revert you back as soon as possible...