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 |
Can you apply link and association interchangeably?
Can a variable be both static and volatile in c?
What is spark map function?
What is chain pointer in c?
Explain 'far' and 'near' pointers in c.
Why c is procedure oriented?
Why we write conio h in c?
#include<stdio.h> int f(int,int); int main() { printf("%d",f(20,1)); return 0; } int f(int n,int k) { if(n==0) return 0; else if(n%2)return f(n/2,2*k)+k; else return f(n/2,2*k)-k; } how this program is working and generating output as 9....?
write a program to concatenation the string using switch case?
Whether there can be main inside another main?If so how does it work?
In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.
Why pointers are used in c?