C Programming char *ptr;char myString[] = "abcdefg";ptr = myString;ptr += 5;what string does ptr point to in the sample code above? fg efg bcdefg defg cdefg fg efg bcdefg defg cdefg ANSWER DOWNLOAD EXAMIANS APP
C Programming A preprocessor command need not start on a new line need not start on the first column comes before the first executable statement has # as the first character need not start on a new line need not start on the first column comes before the first executable statement has # as the first character ANSWER DOWNLOAD EXAMIANS APP
C Programming A C variable cannot start with A special symbol other than underscore A number An alphabet Both of the above A special symbol other than underscore A number An alphabet Both of the above ANSWER DOWNLOAD EXAMIANS APP
C Programming Standard ANSI C recognizes ______ number of keywords? 40 30 24 36 32 40 30 24 36 32 ANSWER DOWNLOAD EXAMIANS APP
C Programming The function scanf() returns ......... 1 The actual values read for each argument. 0 ASCII value of the input read. The number of successful read input values. 1 The actual values read for each argument. 0 ASCII value of the input read. The number of successful read input values. ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char far *farther, *farthest; printf("%d..%d", sizeof(farther), sizeof(farthest));} 4..4 4..2 2..2 2..4 4..4 4..2 2..2 2..4 ANSWER DOWNLOAD EXAMIANS APP