C Programming char *ptr;char myString[] = "abcdefg";ptr = myString;ptr += 5;what string does ptr point to in the sample code above? efg bcdefg defg cdefg fg efg bcdefg defg cdefg fg ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the final value of the digit?void main(){ int digit = 0; for( ; digit <= 9; ) digit++; digit *= 2; --digit;} 17 16 -1 19 20 17 16 -1 19 20 ANSWER DOWNLOAD EXAMIANS APP
C Programming What will be the output of the following program?#include#define prod(a,b) a*bvoid main(){ int x=3,y=4; printf("%d", prod(x+2,y-1));} 10 15 None of these 12 11 10 15 None of these 12 11 ANSWER DOWNLOAD EXAMIANS APP
C Programming Determine Output:void main(){ char far *farther, *farthest; printf("%d..%d", sizeof(farther), sizeof(farthest));} 2..4 4..4 2..2 4..2 2..4 4..4 2..2 4..2 ANSWER DOWNLOAD EXAMIANS APP
C Programming Who is father of C Language? F. Codd Gosling Dennis Ritchie James Bjarne Stroustrup Dr. F. Codd Gosling Dennis Ritchie James Bjarne Stroustrup Dr. ANSWER DOWNLOAD EXAMIANS APP
C Programming Which of the following function is used to find the first occurrence of a given string in another string? strstr() strrchr() strnset() strchr() None of these strstr() strrchr() strnset() strchr() None of these ANSWER DOWNLOAD EXAMIANS APP