what is difference between #include<stdio.h> and
#include"stdio.h"
Answer Posted / bharatgs7
<stdio.h> means its a in-built header file, "stdio.h" means
its an user-defined header file
| Is This Answer Correct ? | 11 Yes | 3 No |
Post New Answer View All Answers
Explain what is the best way to comment out a section of code that contains comments?
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.
How can I sort more data than will fit in memory?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
What is a built-in function in C?
How to declare pointer variables?
Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?
Explain how do you determine a file’s attributes?
Differentiate between #include<...> and #include '...'
What is a null pointer assignment error? What are bus errors, memory faults, and core dumps?
What are the parts of c program?
How can you increase the size of a statically allocated array?
How can I read/write structures from/to data files?
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
What is a pointer in c plus plus?