Computer Science, asked by abhiroy22, 8 months ago

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 boredpotatohead
1

The output will be:

malayalaM

Similar questions