Login
C Programming
1)
The library function used to find the last occurrence of a character in a string is ?
A)
strnstr()
B)
laststr()
C)
strrchr()
D)
strstr()
Next
Show Answer:
Show Answer
More Question
What will be the output of the program #includestdio.hint main() char p; p=hello; printf(s\n, &&p); return 0;
Point out the error in the following program. #includestdio.hint main() struct emp char name[20]; float sal; ; struct emp e[10]; int i; for(i=0; i=9; i++) scanf(s f, e[i].name, &e[i].sal); return 0;
What is the notation for following functions 1. int f(int a, float b) / Some code /
What will be the output of the program #includestdio.hint main() int i=4, j=8; printf(d, d, d\n, ij&ji, ij&ji, i^j); return 0;
The keyword used to transfer control from a function back to the calling function is