20120113

Program in C to learn preprocessor directive,

Program in C to learn preprocessor directive, preprocessor.c

#include<stdio.h>
#define size 5
int main()
{
int i=1;
for(i=1;i<=5;i++)
printf("\n %d \n", i);
return 0;
}
Previous                             Home                               Next

No comments:

Post a Comment