Answer Posted / dally
#include<stdio.h>
#include<conio.h>
int main()
{
char array1[] = "STRING FOR TESTNG";
char array2[20],i=0;
int count;
count = strlen(array);
for(count;count>1;count--)
{
array2[i]= array1[count];
i++;
}
printf("%s\n",array2);
}
| Is This Answer Correct ? | 0 Yes | 8 No |
Post New Answer View All Answers
How can I manipulate strings of multibyte characters?
Explain how do you use a pointer to a function?
What are the advantage of c language?
Can a pointer point to null?
How can I remove the leading spaces from a string?
What is difference between structure and union in c programming?
Stimulate calculator using Switch-case-default statement for two numbers
Why do we use return in c?
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.
What is far pointer in c?
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
What are the differences between new and malloc in C?
What is type qualifiers?
Write a program to implement queue.
How can I recover the file name given an open stream or file descriptor?