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

Answer Posted / bathakarai

The preprocessor <stdio.h> means that the directory is
predefined one.

but we specify "stdio.h" in their program that indicates
that the preprocessor is an userdefind one

Is This Answer Correct ?    26 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is hungarian notation? Is it worthwhile?

926


Explain how do you sort filenames in a directory?

784


What is this pointer in c plus plus?

784


Write a program to check whether a number is prime or not using c?

777


What does %d do in c?

717






Can we declare variable anywhere in c?

700


What are the uses of null pointers?

764


Why should I prototype a function?

812


how could explain about job profile

1629


Are enumerations really portable?

778


Can you please explain the difference between malloc() and calloc() function?

828


Is it valid to address one element beyond the end of an array?

886


List some applications of c programming language?

718


What is define directive?

843


Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].

856