write a program to reverse the words in the sentence.NOTE:not reverse the entire string but just the occurance of each word
Answer / rprabhakaranmca
INPUT:HI Hi welcome to Citrisus
OUTPUT;Citrisus to Welcome Hi
| Is This Answer Correct ? | 0 Yes | 3 No |
How to run c Program without using IDE of c. means if program made in notepad.then how to compile by command prompt.
#include<stdio.h> #include<conio.h> void main() { clrscr(); int a=0,b=0,c=0; printf("enter value of a,b"); scanf(" %d %d",a,b); c=a+b; printf("sum is %d",c); getch(); }
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
Write a program to find factorial of a number using recursive function.
How can I determine whether a machines byte order is big-endian or little-endian?
What is a far pointer?What is the utility?
Explain the difference between struct and union.
I completed my B.tech (IT). Actually I want to develop virtual object that which will change software technology in the future. To develop virtual object what course I have to take. can I any professor to help me.
When should a type cast not be used?
There are 3 baskets of fruits with worng lables,one basket has apple,another basket has orange,another has combination of apple and orange,what is the least way of interchange the lables.
15 Answers Cisco, Google, MBT,
if ENTERED FIVE DIGITS DESIGN A PROGRAM THAT WILL FIND CORRESPONDING VALUE FROM ASCII TABLE
What is storage class?