#include <stdio.h>
#include <string.h>
struct student
{
int rollno;
char name[30];
struct date
{
int dd;
int mm;
int yyyy;
}doj;
}s;
int main(){
s.doj.dd=12;
s.doj.mm=07;
s.doj.yyyy=2005;
s.rollno=1;
strcpy(s.name,"ADARSH");
printf("student date of joining(d/m/y):%d%d%d\n",s.doj.dd,s.doj.mm,s.doj.yyyy);
return 0;}
To embed this project on your website, copy the following code and paste it into your website's HTML: