what is the difference between #include<stdio.h> and
#include "stdio.h" ?

Answer Posted / n

implementation defined. read manual for the compiler you use.
if include " " fails, then include < > is tried

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }

692


Explain what is the purpose of "extern" keyword in a function declaration?

613


What is actual argument?

585


What type of function is main ()?

579


Why c language?

637






if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above

705


What are the types of data structures in c?

596


How can I rethow can I return a sequence of random numbers which dont repeat at all?

700


Is it better to bitshift a value than to multiply by 2?

649


application attempts to perform an operation?

1487


Why does everyone say not to use scanf? What should I use instead?

678


What is sizeof int?

629


Can static variables be declared in a header file?

610


main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none

716


What is the difference between scanf and fscanf?

656