What does printf does?
No Answer is Posted For this Question
Be the First to Post Answer
What is a #include preprocessor?
Here is alphabets : abcdefgh 1) how to reverse. as hgfedcba 2) after reversal, how to group them in a pair hg fe dc ba.
What do you mean by c?
why array index always starts from zero??
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
Program to find largest of three numbers without using comparsion operator?
How is a null pointer different from a dangling pointer?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
how to return 1000 variables from functio9n in c?plz give me code also
which is an algorithm for sorting in a growing Lexicographic order
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
how to swap four numbers without using fifth variable?