What is 'bus error'?
No Answer is Posted For this Question
Be the First to Post Answer
What would be an example of a structure analogous to structure c?
main() { printf("hello"); fork(); }
we all know about the function overloading concept used in C++ and we all learnt abt that.... but that concept is already came in C in a very smaller propotion ... my question is IN WHICH CONCEPT THERE IS A USE OF FUNCTION OVERLOADING IS USED in C language?????????????
What is a sequential access file?
What is the use of sizeof?
Find the largest number from the given 2 numbers without using any loops and the conditional operator.
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); }
Read N characters in to an array . Use functions to do all problems and pass the address of array to function. 2. Enter alphanumeric characters and form 2 array alphaets and digits.Also print the count of each array.
How to write a code for reverse of string without using string functions?
what is a NULL pointer?
create a C program that displays one z,two y's,three x's until twenty six A's. plzz answer i need it tomorrow.
Explain what is the heap?