How do I convert a string to all upper or lower case?
No Answer is Posted For this Question
Be the First to Post Answer
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); }
difference between object file and executable file
What is a pointer?
in one file global variable int i; is declared as static. In another file it is extern int i=100; Is this valid ?
1. Write a function to display the sum of two numbers in the following ways: By using (i) pass by value (ii) pass by address a. function with argument and with return value b. function with argument and without return value c. without argument , with return value d. without argument , without return value Note: Use pass by address.
what are the different storage classes in c?
What is local and global variable in c?
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
What is #include cctype?
How can I avoid the abort, retry, fail messages?
which of 'arrays' or 'pointers' are faster?
What is the difference between union and structure in c?