//Output of Integers
//Downloaded from www.c4cprog.co.nr
#include<conio.h>
void main()
{
int m=12345;
long int n=9876543;
clrscr();
printf("%d\n",m);
printf("%10d\n",m);
printf("%010d\n",m);
printf("%-10d\n",m);
printf("%10ld\n",n);
printf("%10ld\n",-n);
getch();
}
Programs Can Also Be Downloaded From The Folders Below....[Or Scroll Down]
Predict Output
Click Here To Download C File Of This Program
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment