int i=0,j;
j=++i + ++i ++i;
printf("
%d",j);
Answers were Sorted based on User's Feedback
how to find sum of 5 digits in C?
Is it better to use malloc() or calloc()?
Is reference used in C?
write a c program thal will find all sequences of length N that produce the sum is Zero, print all possible solutions?
Are the variables argc and argv are local to main?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
What is the sizeof () a pointer?
What are data breakpoints?
#include<conio.h> #include<stdio.h> void main() { int i; if(1,0,2,3) { printf("if"); } else { printf("else"); } getch(); } Can any body tell the answer of this question with explanation?
Tell us bitwise shift operators?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none