What is output redirection?
No Answer is Posted For this Question
Be the First to Post Answer
write a function for strtok()??
What are the 4 types of organizational structures?
What is the best way of making my program efficient?
what do u mean by Direct access files? then can u explain about Direct Access Files?
Why do we use pointer to pointer in c?
What is a const pointer?
what is a c-language.what is do.
What is a class?
The file stdio.h, what does it contain?
What are actual arguments?
Who invented bcpl language?
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); }