//typedef - used as alias of a structure
#include <stdio.h>
#include<string.h>
typedef struct computerengineeringstudent{ //typedef function to make
int roll; //an alias of a structure
float cgpa;
char name[100];
} coe ;
int main(){
coe s1;
s1.roll = 1664;
s1.cgpa = 9.2;
strcpy(s1.name,"shradha"); //String inbuild function
printf("Student name is %s",s1.name);
}
To embed this project on your website, copy the following code and paste it into your website's HTML: