# define x=1+4;
main()
{
int x;
printf("%d%d",x/2,x/4);
}
Answer Posted / banavathvishnu
x/2 will become 1+4/2=3
x/4 will become 1+4/4 = 2
| Is This Answer Correct ? | 3 Yes | 2 No |
Post New Answer View All Answers
Why is event driven programming or procedural programming, better within specific scenario?
What is ponter?
Explain how can I convert a string to a number?
What is bash c?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
What is queue in c?
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
Can the curly brackets { } be used to enclose a single line of code?
What is unary operator?
Is it acceptable to declare/define a variable in a c header?
Tell me what are bitwise shift operators?
Explain high-order and low-order bytes.
Explain union.
What are the 3 types of structures?
Write a program of advanced Fibonacci series.