scanf(“%d”,i)
Answer may be:
In the above statement, we are taking the input from the user. An ampersand is placed before i variable. The correct syntax of taking an input is:
scanf(“%d”, &i);