View Code of Problem 52

#include<iostream>
#include<iomanip>
#include<cmath>
#include<cstring>
using namespace std;
int a[105][105];
int b[105][105];

int main() {
	char str[20];
	gets_s(str);
	int len = strlen(str);
	for (int i = len-1; i >=0; i--) {
		cout << str[i];
	}
}

/*
Main.c:1:9: fatal error: iostream: No such file or directory
 #include<iostream>
         ^~~~~~~~~~
compilation terminated.
*/

Double click to view unformatted code.


Back to problem 52