C Programming Determine Output:void main(){ char *p; printf("%d %d", sizeof(*p), sizeof(p));} 1 1 2 2 1 2 2 1 1 1 2 2 1 2 2 1 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed after execution of the following program code?main(){ printf("\\nab"); printf("\\bsi"); printf("\\rha"); } asiha hai haasi None of these absiha asiha hai haasi None of these absiha ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:#include#define clrscr() 100void main(){ clrscr(); printf("%dn", clrscr());} 0 1 100 Error 0 1 100 Error ANSWER DOWNLOAD EXAMIANS APP
C Programming Functions have .......... Function scope No scope at all Local scope File scope Block scope Function scope No scope at all Local scope File scope Block scope ANSWER DOWNLOAD EXAMIANS APP
C Programming Which command is used to skip the rest of a loop and carry on from the top of the loop again? break skip continue resume None of these break skip continue resume None of these ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the maximum number of dimensions an array in C may have? 20 Theoratically no limit. The only practical limits are memory size and compilers. 2 8 50 20 Theoratically no limit. The only practical limits are memory size and compilers. 2 8 50 ANSWER DOWNLOAD EXAMIANS APP