Write a c program which display your name, class, section in separate line
Answers
Answered by
0
Answer:
#include <stdio.h>
int main()
{
printf("Name : Aryan Mohapatra \n");
printf("DOB : Four\n");
printf("Section: A\n");
return(0);
}
Similar questions