What is the correct syntax to print the value of a variable x in C?
print(x);
printf(x);
printf("%d", x);
cout << x;
This question is part of this quiz :