#include <stdio.h>
#include<stdlib.h>

//Structure -> User defined data type

//name,dept,rollno   

// int roll=10;

struct Student{
    char name[100]="Rahul";
    char dept[100]="CSE";
    int rollno=123;
};

int main() {
    struct Student s;
    printf("%d",s.rollno);
    return 0;
}