what does ‘segmentation violation’ mean?
I didn't count the ducks that I saw in line, but I do remember that one duck was in front of two ducks, another duck behind two ducks. How many ducks did I see?
Can static variables be declared in a header file?
What are logical errors and how does it differ from syntax errors?
Are negative numbers true 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); }
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
progrem to generate the following series 1 12 123 1234 12345
What is s in c?
The file stdio.h, what does it contain?
Why does this code crash?
How can I automatically locate a programs configuration files in the same directory as the executable?
How we can insert comments in a c program?