Important things to remember in c programing
For Header File always use the #include <stdio.h> and #include <conio.h>
Also for taking a variable from user scanf("%d", &num); Read integer number using '%d' printf("Entered number is %d", num); // Displaying 'num' on screen
In C programming language, %d and %i are format specifiers as where %d specifies the type of variable as decimal and %i specifies the type as integer.
More and more is added
Comments
Post a Comment