In this C Program, you will learn how to print your own information containing RollNo, Name, Department, and Age on the screen using C programming. A basic program that displays student's own information containing RollNo, Name, Department, and Age" on the screen.
PROGRAM :
#include<stdio.h>
int main()
{
printf("Student Name : Peter Parker\n"
"Student Age : 21\n"
"Student RollNo : 1917***\n"
"Student Dept. : Computer Science and Engineering");
return 0;
}