Input/Output in C Programming| Q - 3

Last Updated :
Discuss
Comments

What is the correct syntax to print the value of a variable x in C?


print(x);

printf(x);

printf("%d", x);

cout << x;

Tags:
Share your thoughts in the comments