C PROGRAMING TUTORIAL :2 Hey guys today we create a simple - TopicsExpress



          

C PROGRAMING TUTORIAL :2 Hey guys today we create a simple running C program. This program first inputs an integer and then prints it. Input is done using scanf function and number is printed on screen using printf. So copy it and test it and learn what each command does. # include int main() { int a; printf("Enter an integer "); scanf("%d", &a); printf("Integer that you have entered is %d ", a); return 0; }
Posted on: Fri, 05 Jul 2013 05:05:53 +0000

Trending Topics



Recently Viewed Topics




© 2015