Computer Science, asked by parthana08, 8 days ago

Write a c program which display your name, class, section in separate line​

Answers

Answered by Shivayan
0

Answer:

#include <stdio.h>

int main()

{

printf("Name : Aryan Mohapatra \n");

printf("DOB : Four\n");

printf("Section: A\n");

return(0);

}

Similar questions