Code:
#include<stdio.h>
#define ISIZE 10
void size()
{
char string10[ISIZE];
int i;
for(i=0;i<ISIZE;i++)
string10[i]=getchar();
for(i=ISIZE-1;i>=0;i--)
putchar(string10[i]);
}
output is disappears in a seconds.
Am getting the output like this
The program '[1616] examples.exe: Native' has exited with code 0 (0x0).
I need immediate solution for this problem
Comment