int i=0,j;
j=++i + ++i ++i;
printf("
%d",j);
Answers were Sorted based on User's Feedback
What are macros in C?
How do we open a binary file in Read/Write mode in C?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
Is linux written in c?
atoi, which takes a string and converts it to an integer. write a program that reads lines(using getline), converts each line to an integer using atoi and computes the average of all the numbers read. also compute the standard deviation
Write the program for displaying the ten most frequent words in a file such that your program should be efficient in all complexity measures.
what is the difference between these initializations? Char a[]=”string”; Char *p=”literal”; Does *p++ increment p, or what it points to?
Write a function that will take in a phone number and output all possible alphabetical combinations
whenever a question is posted in a particular category in allinterview.com, Is there any facility to receive an indication mail. For eg: I need to receive an indication email, whenever a question is posted under the category “C Langauage”.
Explain two-dimensional array.
Bit swapping
What is c value paradox explain?