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

List out few of the applications that make use of Multilinked Structures?

1301


Write the control statements in C language

650


Difference between strcpy() and memcpy() function?

676


What are volatile variables in c?

521


Is fortran faster than c?

581






what is the syallabus of computer science students in group- 1?

1841


How do shell structures work?

569


What functions are used in dynamic memory allocation in c?

597


Suppose we have a table name EMP as below. We want to perform a operation in which, I want to change name ‘SMITH’ from as ‘SMITH JAIN’. Also I want to change the name of the column from ENAME to E_NAME. EMPNO ENAME JOB MGR HIREDATE SAL 7369 SMITH Coder 7902 17-DEC-80 800 7499 ALLEN SALESMAN 7698 20-FEB-81 1600 7521 WARD SALESMAN 7698 22-FEB-81 1250

1509


Explain how many levels deep can include files be nested?

626


What does the message "automatic aggregate intialization is an ansi feature" mean?

694


When c language was developed?

641


When can a far pointer be used?

588


in linking some of os executables are linking name some of them

1651


Explain what does it mean when a pointer is used in an if statement?

617