To milan_m : no ale kdyz chci misto cin dat cin.getline(pole, size); tak mě to pusti jenom naspat veliskot pole ale text už ne
Příspěvky odeslané z IP adresy 78.108.145.–
pepk
pepk
muzete prosim poradit jak dynamicky (behem porgramu) nastavit velikost pole pomoci NEW diky za rady
#include <iostream>
#include <cmath>
using namespace std;
const int size = 33;
int main()
{
char pole[size];
cout<<"zadej text: ";
cin.getline(pole, size);
for(int i = strlen(pole)-1; i>=0 ; i--)
cout<<pole[i];
cout<<"\n";
return 0;
}