program for reversing a selected line word by word when
multiple lines are given without using strrev
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to check whether a number is prime or not using c?
What are the different file extensions involved when programming in C?
write a c programming using command line argument,demonstrate set operation(eg;union,intersection,difference) example output is c:>setop 12 34 45 1 union 34 42 66 c:>setop 12 34 1 42 66 c:>setop 12 34 diff 12 56 67 78 setop 12 34
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
What is a #include preprocessor?
Write a c program to demonstrate Type casting in c?
code for bubble sort?
What is sorting in c plus plus?
who is the father of c
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?
#include<stdio.h> void main() { int a=5,b=6,c; int x=(a<b)+7; int y=(x==7)*9; int z=(c=x+y)*2; printf("%h %h %h",x,y,z); } What is the output? Explain it.
Write a program to find whether the given number is prime or not?