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

Answer Posted / aravind

#include<stdio.h>
int main()
{
int i;
char a={"Hello"};
for(i=4;i>=0;i--)
printf("revese string=%c",a);
}

Is This Answer Correct ?    7 Yes 32 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the meaning of ?

794


What is build process in c?

859


Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?

802


Do pointers store the address of value or the actual value of a variable?

812


Mention four important string handling functions in c languages .

838


Explain what is a 'locale'?

780


a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above

978


How to Throw some light on the splay trees?

791


Explain the properties of union.

813


Hai,I have done with my bachelor of commerce and planing to ms,please suggest me how to convince vo for shifting from commerce to computers. Visa on 8 DEC 2014  Npu university

1793


What is pointers in c?

882


Explain what header files do I need in order to define the standard library functions I use?

850


What is stack in c?

827


write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.

5196


What is far pointer in c?

999