Computer Science, asked by dhawalpandey7096, 7 months ago

scanf( ) functions to read 78

Answers

Answered by saliqueansari12n
0

Answer:

Scanf function is used in Java to Scan a particular file or image . It can also be used to print in Java.

Answered by rahmanbinjaffar
1

Answer:

#include<stdio.h>

void main()

{

       int num;

       printf("Enter a number : ");

       scanf("%d",&num);

       printf("\nThe entered number is %d",num);

}

Explanation:

output :

Enter a number : 78

The entered number is 78

Similar questions