C Programming char *ptr;char myString[] = "abcdefg";ptr = myString;ptr += 5;what string does ptr point to in the sample code above? efg bcdefg cdefg fg defg efg bcdefg cdefg fg defg ANSWER DOWNLOAD EXAMIANS APP
C Programming Standard ANSI C recognizes ______ number of keywords? 36 40 30 24 32 36 40 30 24 32 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be printed after compiling and running the following code?main() { char *p; printf("%d %d",sizeof(*p), sizeof(p));} 1 1 2 1 2 2 1 2 1 1 2 1 2 2 1 2 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine output:void main(){ extern int i; i=20; printf("%d", sizeof(i));} 2 Compiler Error 20 Linker Error 2 Compiler Error 20 Linker Error ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the correct value to return to the operating system upon the successful completion of a program? -1 Program do no return a value. 2 1 -1 Program do no return a value. 2 1 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