what will be the output of" printf("%d%d",scanf("%d%
d",&a&b));"
Answer Posted / praveen
No, The output will not be 2......The exact output is "It
will take the garbage value"
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
What are the string functions? List some string functions available in c.
Combinations of fibanocci prime series
What is the difference between char array and char pointer?
What is the description for syntax errors?
What are compound statements?
What is the role of && operator in a program code?
What is the behavioral difference when include header file in double quotes (“”) and angular braces (<>)?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
Explain the meaning of keyword 'extern' in a function declaration.
How can I discover how many arguments a function was actually called with?
What is sizeof array in c?
How can I sort a linked list?
What is sizeof int in c?
What is an expression?