Thursday, December 8, 2016

C Program

program name:register datatype variable name;



#include<stdio.h>
#include<conio.h>
void main()
{
register int x=5;
printf("Value of x=%d",x);
getch ();

}

No comments:

Post a Comment