Explain the difference between #include "..." And #include <...> In c?
No Answer is Posted For this Question
Be the First to Post Answer
What library is sizeof in c?
What is the use of #define preprocessor in c?
find second largest element in array w/o using sorting techniques? use onle one for loop.
15 Answers BitWise, Zycus Infotech,
what is diff between localstatic and globalstatis variable possible 2 use in another file...?
Which header file should you include if you are to develop a function which can accept variable number of arguments?
Is main is a keyword in c?
main() { int i; printf("%d", &i)+1; scanf("%d", i)-1; }
Can you mix old-style and new-style function syntax?
How do you define a function?
what would be the output of the following program? main() { int k = 123; char *ptr; ptr = &k; printf("%d",*ptr); }
How can I return multiple values from a function?
What is RAM memory? and What is ROM?Who designed one is temparary and another is permanent?why they designed like that?By using far pointer which type data(whether hexadecimal)we can access?