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

//Structure -> User defined data type

//name,dept,rollno   

// int roll=10;

struct Student{
    char name[100];
    char dept[100];
    int rollno;
}

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