C Programming char *ptr;char myString[] = "abcdefg";ptr = myString;ptr += 5;what string does ptr point to in the sample code above? fg defg bcdefg efg cdefg fg defg bcdefg efg cdefg 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 Which of the following statements should be used to obtain a remainder after dividing 3.14 by 2.1 ? rem = modf(3.14, 2.1); Remainder cannot be obtain in floating point division. rem = 3.14 % 2.1; rem = fmod(3.14, 2.1); rem = modf(3.14, 2.1); Remainder cannot be obtain in floating point division. rem = 3.14 % 2.1; rem = fmod(3.14, 2.1); ANSWER DOWNLOAD EXAMIANS APP
C Programming An array elements are always stored in ________ memory locations. None of these Sequential Random Sequential and Random None of these Sequential Random Sequential and Random ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the program ?#includeint main(){ int arr[1] = {10}; printf("%d", 0[arr]); return 0;} 10 0 1 None of these 6 10 0 1 None of these 6 ANSWER DOWNLOAD EXAMIANS APP
C Programming Which operator has the lowest priority? || + ++ % && || + ++ % && ANSWER DOWNLOAD EXAMIANS APP