code for reverse alternate words from astring
Answer / rohit
#include<stdio.h>
#include<conio.h>
int main()
{
char string[30]="hoow are you?";
static char stoken[15][10];
int i,j,k;
j=0;k=0;
for(i=0;string[i]!='\0';i++,k++)
{
if(string[i]==' ')
{
j++;
k=0;
}
else
{
stoken[j][k]=string[i];
}
}
for(i=j;i>=0;i--)
printf("%s\n",stoken[i]);
getch();
return 1;
}
Is This Answer Correct ? | 6 Yes | 23 No |
i have to apply for rbi before that i need to know the the syllabus for the entrance questions. whethet it may be aps or techinical
IS STRUCTURES CAN BE USED WITHIN AN ARRAY?
What is the role of && operator in a program code?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
What is optimization in c?
Write a program for the following series? 1 121 12321 1234321 123454321 12345654321 1234567654321 123456787654321 12345678987654321 1234567890987654321 123456789010987654321 12345678901210987654321 1234567890123210987654321 .........1234321............ ..........123454321............ ..........12345654321............ 7 8 9 0 1 Pls............?
Explain is it valid to address one element beyond the end of an array?
c program to manipulate x=1!+2!+3!+...+n! using recursion
what is difference between null and nul in c language
wat is the difference between a definition and declaration? float y;---it looks like a declaration..but it s a definition.how?someone explain
Famous puzzles which are generally asked by companies during interviews ?
Why c is called object oriented language?