C - Print How Many Inputs are taken from Keyboard using Scanf in C program
In this C program, we will learn how to get total number of inputs taken from scanf() in c program.
Since, we know that scanf() returns total number of input using the return value of scanf(), we can count the total number of inputs.
In this program, we are reading multiple numbers and storing them into an integer array, at every input scanf() is returning the number of inputs and we are adding them into count.
Print Number of Inputs taken from Keyboard using Scanf in C Program
Output