main()
{
printf("hello%d",print("QUARK test?"));
}
Answers were Sorted based on User's Feedback
Answer / vignesh1988i
QUARK test?hello1
first it prints the inner most printf statement and then and the comes to the second printf and returns the number of characters inside the " ". but this wat i think, may be wrong too
thank u.
| Is This Answer Correct ? | 1 Yes | 1 No |
Is it fine to write void main () or main () in c?
What are the different data types in C?
Display names and numbers of employees who have 5 years or more experience and salary less than Rs.15000 using array of structures (name, number, experience and salary)
What is meant by preprocessor in c?
Sir,please help me out with the output of this programme:- #include<stdio.h> #include<conio.h> void main() { int a=18,b=12,i; for(i=a<b?a:b;a%i||b%i;i--); printf("%d %d",i); }
plz answer....A program that takes 3 variables e.g a,b,c in as seperate parameters and rotates the values stored so that value goes a to b, b to c and c to a .
Expand the following LKB BKL FFG
what is the difference between : func (int list[], ...) or func (int *list , ....) - what is the difference if list is an array and if also if list is a pointer
Mention four important string handling functions in c languages .
How to receive strings with spaces in scanf()
what is ram?
void main() { int i=5; printf("%d",i++ + ++i); }