Login
C Programming
5)
The library function used to find the last occurrence of a character in a string is ?
A)
strnstr()
B)
laststr()
C)
strrchr()
D)
strstr()
Previous
Next
Show Answer:
Show Answer
More Question
Which of the statements is correct about the program #includestdio.hint main() float a=3.14; char j; j = (char)&a; printf(d\n, j); return 0;
What will be the output of the program #includestdio.hint main() int i=2; printf(d, d\n, ++i, ++i); return 0;
The keyword used to transfer control from a function back to the calling function is
How many times the program will print FutureC #includestdio.hint main() printf(FutureC); main(); return 0;
A preprocessor directive is a message from programmer to the preprocessor.