C Language Program to Print large No. after user Input
Question: WAP which enters any roll no. and print it?#include <stdio.h>
void main()
{
long int roll;
printf("Enter roll no.");
scanf("%ld",&roll);
printf("the lare no. is %ld",roll);
}
Categories: c programming