Tell us the difference between these two :
#include"stdio.h"
#include<stdio.h>
define in detial.
Answer Posted / g.deepa
#include"stdio.h" is the creating by the user
(within Double quotes header files are created by the user)
#include<stdio.h> is the header file of programming
language.It is the created by the Programmers.
| Is This Answer Correct ? | 9 Yes | 10 No |
Post New Answer View All Answers
How can I find out if there are characters available for reading?
Explain why c is faster than c++?
What does the c in ctime mean?
What are high level languages like C and FORTRAN also known as?
Explain low-order bytes.
What are the 4 types of unions?
What is the difference between NULL and NUL?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
What is data structure in c and its types?
Write a program to swap two numbers without using a temporary variable?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
Why calloc is better than malloc?
What is new line escape sequence?
What is linear search?
What is a function simple definition?