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 |
Write a code to generate divisors of an integer?
1. main() { printf("%d",printf("HelloSoft")); } Output?
the expression a=30*1000+2768; evalutes to a) 32768 b) -32768 c) 113040 d) 0
What is string in c language?
code for inverse a matrix
How are pointers declared in c?
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
Why do we need volatile in c?
Explain the difference between malloc() and calloc() in c?
What are the application of c?
What kind of sorting is this? SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort
What’s the special use of UNIONS?