2. write a c program to print roll no, name, address.
#include <stdio.h>
#include <conio.h>
void main()
{
clrscr();
printf("Rollno : 11 \n");
printf("Name : Idar \n");
printf("Address : INSB BCA & PGDCA College, Idar");
getch();
}
Output:
Rollno : 11
Name : Idar
Address : INSB BCA & PGDCA College, Idar