Explain about the functions strcat() and strcmp()?
No Answer is Posted For this Question
Be the First to Post Answer
print the table 5 in loops
What is the stack in c?
what is compiler
Why is event driven programming or procedural programming, better within specific scenario?
Did c have any year 2000 problems?
WHAT IS ABSTRACT DATA TYPE
Explain how do you override a defined macro?
Explain built-in function?
how to get the starting address of file stored in harddisk through 'C'program.
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
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); }
How can I avoid the abort, retry, fail messages?