Report Bug
Qus : Which of the following is a correct way to declare an integer variable in C?
QusWhich of the following is a correct way to declare an integer variable in C?

A. int num;
B. integer num;
C. num int;
D. num integer;


Solution
A. int num;






Report Bug