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 |
Do you know the difference between malloc() and calloc() function?
WHAT IS INT?
main() { printf(5+"good morning"); printf("%c","abcdefgh"[4]); }the o/p is morning and e...how someone explain
4.weight conversion: Write a program that will read weight in pounds and convert it into grams.print both the original weight and the converted value.There are 454 grams in a pound.design and carry out a test plan for this program.
why Language C is plateform dependent
1)which of following operator can't be overloaded. a)== b)++ c)?! d)<=
Discuss similarities and differences of Multiprogramming OS and multiprocessing OS?
what are far pointers?
In the following code segment what will be the result of the function, value of x , value of y { unsigned int x=-1; int y; y = ~0; if(x == y) printf("same"); else printf("not same"); } a) same, MAXINT, -1 b) not same, MAXINT, -MAXINT c) same , MAXUNIT, -1 d) same, MAXUNIT, MAXUNIT e) not same, MAXINT, MAXUNIT
What are the characteristics of arrays in c?
. A database table called PERSON contains the fields NAME, BASIC and HRA. Write a computer program to print a report which employee name and total salary for those employees whose total salary is more than 10,000. Total Salary = BASIC + HRA. At the end, the program should also print the total number of employees whose total salary is more than 10,000.
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?