
Program Menentukan Kata Palindrom
#include <iostream>
#include <string.h>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char** argv) {
char kata[15];
int belakang;
bool palindrome = true;
cout <<"Masukkan Satu Kata : ";
cin.getline(kata, sizeof(kata));
int...