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
What is the meaning of ?
What is build process in c?
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
Do pointers store the address of value or the actual value of a variable?
Mention four important string handling functions in c languages .
Explain what is a 'locale'?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
How to Throw some light on the splay trees?
Explain the properties of union.
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
What is pointers in c?
Explain what header files do I need in order to define the standard library functions I use?
What is stack in c?
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.
What is far pointer in c?