How main function is called in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what is the difference between a free-standing and a hosted environment?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
What does 4d mean in c?
Write a C function to search a number in the given list of numbers. donot use printf and scanf
What is the correct declaration of main?
Define Array of pointers.
program to find the roots of a quardratic equation
main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
how can i access hard disk address(physical address)? are we access hard disk by using far,near or huge pointer? if yes then please explain.....
What is LINKED LIST? How can you access the last element in a linked list?
How can you increase the allowable number of simultaneously open files?