what is the output of
printf("%d",(scanf("%d",10));
Answer Posted / makadivya
10
| Is This Answer Correct ? | 14 Yes | 22 No |
Post New Answer View All Answers
What is cohesion and coupling in c?
Differentiate call by value and call by reference?
Explain is it better to bitshift a value than to multiply by 2?
What is the use of a conditional inclusion statement in C?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
How can I ensure that integer arithmetic doesnt overflow?
When should structures be passed by values or by references?
Explain what is meant by high-order and low-order bytes?
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
Explain threaded binary trees?
Why ca not I do something like this?
What is the purpose of scanf() and printf() functions?
Where define directive used?
#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??