write a proram to reverse the string using switch case?
No Answer is Posted For this Question
Be the First to Post Answer
write a c program to find reminder and quotient if one number is divided by other.to code this program don't use more than 2 variables
What are logical errors and how does it differ from syntax errors?
#include<stdio.h> int main() { int i=0,j=1,k=2,m,n=0; m=i++&&j++&&k++||n++; printf("%d,%d,%d,%d,%d",i,j,k,m,n); }
12 Answers Capital IQ, Sasken,
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
What are the commands should be given before weiting C Program i.e, Cd.. like
4 Answers IBM, Infonet, Satyam, Tech Mahindra,
List the difference between a 'copy constructor' and a 'assignment operator' in C?
Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer
What is the difference between the = symbol and == symbol?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} wat would be the output??
Under what circumstances does a name clash occur?
Is it possible to have a function as a parameter in another function?
What is the use of linkage in c language?