C Programming char *ptr;char myString[] = "abcdefg";ptr = myString;ptr += 5;what string does ptr point to in the sample code above? defg cdefg fg bcdefg efg defg cdefg fg bcdefg efg ANSWER DOWNLOAD EXAMIANS APP
C Programming The default parameter passing mechanism is None of these. call by value result call by value call by reference None of these. call by value result call by value call by reference ANSWER DOWNLOAD EXAMIANS APP
C Programming What would be the output for the following Turbo C code?#includevoid main(){ int a[]={ 1, 2, 3, 4, 5 }, *p; p=a; ++*p; printf("%d ", *p); p += 2; printf("%d", *p);} 3 4 2 4 2 2 3 3 2 3 3 4 2 4 2 2 3 3 2 3 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator has the lowest priority? % || && + ++ % || && + ++ ANSWER DOWNLOAD EXAMIANS APP
C Programming The function sprintf() works like printf(), but operates on .......... Data file stdin stderr no such function in 'C'. string Data file stdin stderr no such function in 'C'. string ANSWER DOWNLOAD EXAMIANS APP
C Programming What is the output of the following statements?for(i=10; i++; i<15) printf("%d ", i); Infinite loop 10 11 12 13 14 15 9 10 11 12 13 None of these 10 11 12 13 14 Infinite loop 10 11 12 13 14 15 9 10 11 12 13 None of these 10 11 12 13 14 ANSWER DOWNLOAD EXAMIANS APP