#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;
    s.rollno=101;
    s.name="Rahul";
    printf("%d",s.rollno);
    printf("%s",s.name);
    return 0;
}