Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

write a program in reverse the string without using
pointer,array,global variable declaration,lib fun only using
a function?

Answer Posted / reshma pawar

#include<stdio.h>
void main()
{
int i;
char a[]={"Hello"};
printf("Reverse String is: ");
for(i=4;i>=0;i--)
printf("%c",a[i]);
}

Is This Answer Correct ?    14 Yes 15 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is a static variable in c?

1093


How do you use a 'Local Block'?

1160


Is javascript based on c?

1048


What are called c variables?

1044


Why we use conio h in c?

1198


Define C in your own Language.

1062


What does %d do in c?

948


what do you mean by enumeration constant?

994


Is using exit() the same as using return?

1319


What is a method in c?

1119


How do you sort filenames in a directory?

1161


Find MAXIMUM of three distinct integers using a single C statement

1047


Why c is procedure oriented?

1052


Which of the following operators is incorrect and why? ( >=, <=, <>, ==)

1152


What is array in c with example?

1225