Complete the code to declare an integer variable named age.
int [1];The code declares an integer variable named age using int age;.
Complete the code to initialize the integer variable count with the value 10.
int count = [1];The variable count is initialized with the integer value 10.
Fix the error in the code to declare a floating-point variable named price.
[1] price;The correct data type for a floating-point number is float.
Fill both blanks to declare and initialize a character variable named grade with the value 'A'.
char [1] = [2];
The variable grade is declared as char and initialized with the character 'A' using single quotes.
Fill both blanks to declare and initialize a string variable named name with the value "John".
char [1][] = [2];
string as a data type which is not standard in C.In C, strings are arrays of characters. We declare char name[] and initialize it with the string "John" using double quotes.