write a program to reverse a every alternetive words in a
string in a place.
EX: Input is "this is the line of text"
Output should be "shit is eht line fo text"
Please any one tell me code for that.
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> main() { int a[3]; int *I; a[0]=100;a[1]=200;a[2]=300; I=a; Printf(“%d\n”, ++*I); Printf(“%d\n”, *++I); Printf(“%d\n”, (*I)--); Printf(“%d\n”, *I); } what is the o/p a. 101,200,200,199 b. 200,201,201,100 c. 101,200,199,199 d. 200,300,200,100
How can I swap two values without using a temporary?
What is the difference between arrays and pointers?
Explain low-order bytes.
What are the application of void data type in c?
What is the difference between far and near ?
A text file that contains declarations used by a group of functions,programs,or users a) executable file b) header file c) obj file d) .cfile
what is difference between array,strutter,union and pointers
3 Answers CTS, Lovely Professional University, Mannar Company,
design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.
`write a program to display the recomended action depends on a color of trafic light using nested if statments
what are bitwise shift operators?
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?