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
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
What is the difference between if else and switchstatement
List the difference between a 'copy constructor' and a 'assignment operator' in C?
What is a pointer variable in c language?
Why is extern used in c?
What is the use of getch ()?
Why calloc is better than malloc?
How can I write functions that take a variable number of arguments?
What is the difference between functions abs() and fabs()?
What is a rvalue?
write a program to find the given number is prime or not
explain how do you use macro?
how to find binary of number?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
What is sizeof c?