# define x=1+4;
main()
{
int x;
printf("%d%d",x/2,x/4);
}
Answer Posted / 123ghouse@gmail.com
3,2
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
How can you invoke another program from within a C program?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
Explain what is the difference between a string and an array?
What is structure in c definition?
What is the advantage of an array over individual variables?
Differentiate between functions getch() and getche().
Explain what is #line used for?
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
What is main function in c?
What are the advantages of c language?
Explain what is operator promotion?
Difference between exit() and _exit() function?
What is the difference between int main and void main?