What is true about the variable declared as 'extern int count;' inside a function?
Consider a structure with int (4 bytes), char (1 byte), and double (8 bytes). What is the minimum size due to alignment requirements?
Which of the following statements about type qualifiers is INCORRECT?
What is the default data type of a floating-point constant in C?
What is the size of int data type on a 32-bit system according to C standard?
Advertisement
In the declaration 'int arr[10], *ptr;', which statement is correct?
Which of the following correctly declares a constant integer variable?
What is the range of unsigned char in C?
What happens when you assign a larger data type value to a smaller one?
In the declaration 'volatile int x;', what does volatile signify?
What is the scope of a variable declared inside a function block?
Which of the following is a storage class in C?
What is the output of: printf("%d", sizeof(int) + sizeof(char))?
What is the difference between 'char' and 'unsigned char' for character representation?
In C, what is the result of: int x = 5.7?
What is the difference between initialization and assignment in C?
What will happen if you declare a variable without initializing it?
Which format specifier is used for printing a long integer?
In the declaration 'int *p, q;', what are the data types?
What is the purpose of the 'restrict' keyword in modern C?