Tell us the difference between these two :
#include"stdio.h"
#include<stdio.h>
define in detial.

Answer Posted / arif

"stdio.h" C compiler-preprocessor search the header file in the current directory
<stdio.h> C preprocessor search the header file in all the directories

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why malloc is faster than calloc?

683


pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)

1959


Explain how do you override a defined macro?

676


What are global variables?

738


What are derived data types in c?

704






Are there namespaces in c?

640


Explain what are the advantages and disadvantages of a heap?

705


What are 3 types of structures?

689


How variables are declared in c?

669


Write a program to print factorial of given number using recursion?

704


What is spaghetti programming?

767


largest Of three Number using without if condition?

1124


What does typedef struct mean?

771


Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.

1106


Why do we use return in c?

654