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 31, 2011
By Unknown
Reactions: |
Monday, October 31, 2011
By Unknown
Reactions: |
Thursday, October 27, 2011
By Unknown
Reactions: |
Thursday, October 27, 2011
By Unknown
Reactions: |
Thursday, October 27, 2011
By Unknown
Reactions: |
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.
Reactions: |
Monday, October 24, 2011
By Unknown
#include //Header Files
#include
void main() //Main Function
{ // Opening Parenthesis
printf("Hello World."); //Statement
} // Closing Parenthesis
Reactions: |
Monday, October 24, 2011
By Unknown
Reactions: |
Monday, October 24, 2011
By Unknown
Reactions: |
Monday, October 24, 2011
By Unknown
Reactions: |
Monday, October 24, 2011
By Unknown
Reactions: |
Thursday, October 13, 2011
By Unknown
Reactions: |
Saturday, October 08, 2011
By Unknown
Reactions: |