# 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
For what purpose null pointer used?
Explain what is the difference between a string and an array?
In which language linux is written?
What are types of preprocessor in c?
Where is volatile variable stored?
Is it possible to pass an entire structure to functions?
What is the difference between volatile and const volatile?
Why main is not a keyword in c?
How can I recover the file name given an open stream?
What is the scope of local variable in c?
What is %s and %d in c?
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
What is a example of a variable?
What are the application of c?
What are the preprocessor categories?