Write the Program to reverse a string using pointers.


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

i want the code for printing the output as follows 4 4 3 3 2 2 1 1 0 1 1 2 2 3 3 4 4

2 Answers  


Main must be written as a.the first function in the program b.Second function in the program c.Last function in the program d.any where in the program

19 Answers   CTS, HCL, TCS,


int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain me output????

1 Answers  


Explain what is the concatenation operator?

0 Answers  


find out largest elemant of diagonalmatrix

0 Answers  


How to create struct variables?

0 Answers  


which of the following statements is incorrect a.typedef struct new{ int n1; char n2; } DATA; b.typedef struct { int n3; char *n4; }ICE; c.typedef union { int n5; float n6; } UDT; d.#typedef union { int n7; float n8; } TUDAT;

5 Answers   Assurgent, TCS,


Why is c called "mother" language?

0 Answers  


What is meaning of tree

0 Answers  


What is the difference b/w main() in C language and main() in C++.

7 Answers  


How can I implement sets or arrays of bits?

0 Answers  


which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;

0 Answers  


Categories