Subscribe to Feeds

Send Your Projects To georgepj@hotmail.com

We'll Publish It With Your Name :-)

Programs Can Also Be Downloaded From The Folders Below....[Or Scroll Down]

Predict Output

Click Here To Download C File Of This Program

 //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();
}

0 comments:

Post a Comment