Jan

17

#include<conio.h>
#include<stdio.h>
typedef int integer;
struct emp{
int eno;
char ename[50];
int sal;
};
void main(){
struct emp e;
integer i;
for(i=1;i<=10;i++)
printf(“%d\n”,i);
}


Leave a Reply

Filled Under: C Programming