Predict output for the following code.
#include <stdio.h>
#include<string.h>
int main() {
char name[10]="Malayalam";
printf("%s",strrev(name));
return 0;
Answers
Answered by
1
The output will be:
malayalaM
Similar questions