What is the code in while loop that returns the output of given code?
No Answer is Posted For this Question
Be the First to Post Answer
where can function pointers be used?
why to assign a pointer to null sometimes??how can a pointer we declare get assigned with a garbage value by default???
What is "Duff's Device"?
what is the difference between entry control and exit control statement?
12 Answers Darbari Lal DAV Model School,
Is there a way to have non-constant case labels (i.e. Ranges or arbitrary expressions)?
What is a substring in c?
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); }
What are pointers really good for, anyway?
What is a static function in c?
which operator having lowest precedence?? a.)+ b.)++ c.)= d.)%
What is c value paradox explain?
what is an inline function?