Hello Can anyone tell me the way to reverse a string in C and only in """"C"""?
How to get a string through one by one characters of the same?
And if I use the following I get errors
String name="hai";
len=strlen(name);
for(i=0;i<len;i++)
{
scanf("%c",name);
}
how to get name one by one in C
but in java it is easy because using charAt() function i can get each cahracter of the string.But in C???