โช Choose the correct option.
What will be output of the following “c” code?
#include
void main( )
{
int i;
printf("%d", scanf("%d", &i));
}
#include
void main( )
{
int i;
printf("%d", scanf("%d", &i));
}
If input of is given by keyboard is 10.