What is the meaning When we write "#include" what is # and
what does include does there???
Answer Posted / sakthivel
# -> is the one of to be set in PREPROCESSOR for the c programs it read the header file to process
include -> it's called and link for # and <stdio.h>
< > and " " -> to set character and header file read the programming section
stdio.h -> slandered input output.header it's header file name
to set the our process header file
| Is This Answer Correct ? | 7 Yes | 3 No |
Post New Answer View All Answers
Why do we need a structure?
What are the different types of control structures?
What is the easiest sorting method to use?
what is event driven software and what is procedural driven software?
What is structure in c explain with example?
Explain the difference between #include "..." And #include <...> In c?
design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.
Why is sizeof () an operator and not a function?
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
Can main () be called recursively?
What is volatile variable how do you declare it?
How to draw the flowchart for structure programs?
Give me the code of in-order recursive and non-recursive.
Write a program to swap two numbers without using third variable?
What are dangling pointers in c?