# 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


Please Help Members By Posting Answers For Below Questions

What does the message "automatic aggregate intialization is an ansi feature" mean?

689


What is c++ used for today?

659


Explain how can you tell whether two strings are the same?

580


explain what is fifo?

630


How can you check to see whether a symbol is defined?

585






Do pointers store the address of value or the actual value of a variable?

606


any "C" function by default returns an a) int value b) float value c) char value d) a & b

661


What is call by value in c?

554


7-Given an index k, return the kth row of the Pascal's triangle. For example, when k = 3, the row is [1,3,3,1]. For reference look at the following standard pascal’s triangle.

2215


write a program to generate address labels using structures?

4005


What is difference between stdio h and conio h?

880


What does double pointer mean in c?

573


Hai what is the different types of versions and their differences

1484


What are runtime error?

623


What is assert and when would I use it?

573