C Programming Determine Output:void main(){ char *p; printf("%d %d", sizeof(*p), sizeof(p));} 1 2 1 1 2 1 2 2 1 2 1 1 2 1 2 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the base data type of a pointer variable by which the memory would be allocated to it? int float Depends upon the type of the variable to which it is pointing. No data type unsigned int int float Depends upon the type of the variable to which it is pointing. No data type unsigned int ANSWER DOWNLOAD EXAMIANS APP
C Programming C programs are converted into machine language with the help of None of these. A compiler An Editor An operating system None of these. A compiler An Editor An operating system ANSWER DOWNLOAD EXAMIANS APP
C Programming What is function? All of these Function is the fundamental modular unit. A function is usually designed to perform a specific task. Function is a block of code that performs a specific task. It has a name and it is reusable. Function is a block of statements that perform some specific task. All of these Function is the fundamental modular unit. A function is usually designed to perform a specific task. Function is a block of code that performs a specific task. It has a name and it is reusable. Function is a block of statements that perform some specific task. ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following operator takes only integer operands? + % / * None of these + % / * None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:#define square(x) x*xvoid main(){ int i; i = 64/square(4); printf("%d", i);} None of These 16 64 4 None of These 16 64 4 ANSWER DOWNLOAD EXAMIANS APP