scanf in c programming code example

Example 1: c scanf

scanf("%d",&variable);

/*
% is a format specifier

%d or %i 		for int
%ld or %li for 	long int
%f for 			float
%lf for 		double
%c for 			char
%s for 			string
*/

Example 2: scanf c

scanf("%d", &b);

Example 3: scanf in c

#include <stdio.h>

int main () {
   scanf("%s", str);
   printf("%s"str);
   scanf("%d", int);
   printf("%d"int);
   return(0);
}

Example 4: sacnf in c

/* scanf example */
#include <stdio.h>

int main ()
{
  char str [80];
  int i;

  printf ("Enter your family name: ");
  scanf ("%79s",str);  
  printf ("Enter your age: ");
  scanf ("%d",&i);
  printf ("Mr. %s , %d years old.\n",str,i);
  printf ("Enter a hexadecimal number: ");
  scanf ("%x",&i);
  printf ("You have entered %#x (%d).\n",i,i);
  
  return 0;
}

Example 5: c++ how to use scanf

#include <stdio.h>

int main()
{
    int a, b, c;
    printf("Enter the first value:");
    scanf("%d", &a);
    printf("Enter the second value:");
    scanf("%d", &b);
    c = a + b;
    printf("%d + %d = %d\n", a, b, c);
    return 0;
}

Example 6: how to scanf in c

#include <stdio.h>
int main()
{
    int testInteger;
    printf("Enter an integer: ");
    scanf("%d", &testInteger);  
    printf("Number = %d",testInteger);
    return 0;
}

Tags:

C Example