Answer Posted / ushabharath
a=a+b-(b=a);
| Is This Answer Correct ? | 27 Yes | 8 No |
Post New Answer View All Answers
What is adt in c programming?
List some basic data types in c?
Multiply an Integer Number by 2 Without Using Multiplication Operator
Explain what is the concatenation operator?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
What are directives in c?
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
What is dynamic memory allocation?
How does sizeof know array size?
Give me the code of in-order recursive and non-recursive.
Explain output of printf("Hello World"-'A'+'B'); ?
What is static memory allocation?
What are the 4 types of unions?
In a byte, what is the maximum decimal number that you can accommodate?
Explain 'far' and 'near' pointers in c.