What is function prototype in c language?
No Answer is Posted For this Question
Be the First to Post Answer
convert 0.9375 to binary
Write a program to accept a character & display its corrosponding ASCII value & vice versa?
What is the use of getch ()?
second highest number in a given set of numbers
How to find a missed value, if you want to store 100 values in a 99 sized array?
what is the format specifier for printing a pointer value?
What is the difference between malloc calloc and realloc in c?
Explain 'bit masking'?
Write a program using bitwise operators to invert even bits of a given number.
What is a node in c?
What is 2 d array 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); }