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
What are inbuilt functions in c?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
The postoder traversal is 7,14,3,55,22,5,17 Then ur Inorder traversal is??? please help me on this
Given two strings S1 and S2. Delete from S2 all those characters which occur in S1 also and finally create a clean S2 with the relevant characters deleted.
Differentiate between null and void pointers.
Is it possible to have a function as a parameter in another function?
Is that possible to store 32768 in an int data type variable?
What is New modifiers?
How can you allocate arrays or structures bigger than 64K?
Explain the term printf() and scanf() used in c language?
Is c programming hard?
code for find determinent of amatrix
What is sizeof return in c?
What is malloc() function?
Under what circumstances does a name clash occur?