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. An entire array is always passed by ___ to a called function.
Q. What will be the output of the following C function?
Q. What is the size of int type?
Q. As soon as a pointer variable is freed, its value
Q. What is the output of C Program with Strings?
Discusssion
Login to discuss.