What is unary operator?
No Answer is Posted For this Question
Be the First to Post Answer
int i=0,j; j=++i + ++i ++i; printf(" %d",j);
Who developed c language and when?
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
hello everybody can we change a the adress of a variabl i mean can i put for exemple for a int *p: &p=6 ?????????
difference of two no's with out using - operator
What is the best way to store flag values in a program?
How many levels of indirection in pointers can you have in a single declaration?
0 Answers Agilent, ZS Associates,
State the difference between x3 and x[3].
What does 3 mean in texting?
write a program to find out number of on bits in a number?
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }
Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop