The best way to read and store a 12-digit number




The best way to read and store a 12-digit number

#include<stdio.h>
int main()
{
  unsigned long long int a;
  printf("enter 12 digit number");
  scanf("%llu",&a);
  printf("number is %llu",a);
  
 }
OUTPUT->

Comments

Popular posts from this blog

Input and output in C#

Printing Hello World in C#

Passing value without reference in C#