K
Q. What is the correct syntax to declare a variable in C?
In C language, the correct syntax to declare a variable is: data_type variable_name; Where, data_type is the type of data (such as int, char, float, etc) and variable_name is a valid identifier. For example: int age;
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. Enumeration (or enum) is a ______ data type in C?
Q. How many lines of output does the following C code produce?
Q. How many digits are present after decimal in float value?
Q. What is the output of C program with arrays?
Q. What are the uses of C Structures?
Q. Choose a correct statement about C String.
Q. Which of the following function is used for sets the position to the beginning of the file
Q. Which of the following is not a logical operator?
Discusssion
Login to discuss.