scanf and printf c++ code example
Example 1: printf in c++
#include <cstdio>
int main()
{
char ch = 'a';
float a = 5.0, b = 3.0;
int x = 10;
printf("%.3f / %.3f = %.3f \n", a,b,a/b);
printf("Setting width %*c \n",5,ch);
printf("Octal equivalent of %d is %o \n",x,x);
return 0;
}
Example 2: c printf scanf
int a;
scanf("%d", &a);
printf("%d", a);
Example 3: 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;
}