Which of the following are valid "include" formats?
A)#include and #include[file.h]
B)#include (file.h) and #include
C)#include [file.h] and #include "file.h"
D)#include <file.h> and #include "file.h"
Answer Posted / santosh
ans is d optioon because in c
we write hedder files in the following format,
#include<stdio.h>
#include "stdio.h"
there can be many number of file names.
above both formats are correct.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
can we have joblib in a proc ?
Explain what is the difference between functions getch() and getche()?
In C programming, what command or code can be used to determine if a number of odd or even?
What is int main () in c?
Write a program to swap two numbers without using the third variable?
Explain what is wrong with this program statement?
Explain the meaning of keyword 'extern' in a function declaration.
What is wrong with this declaration?
What is floating point constants?
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.
Why can’t constant values be used to define an array’s initial size?
A variable that is defined in a specified portion of a program but can be used throughout the program a) global variable b) local variable c) character d) none
List some of the static data structures in C?
What is the advantage of c?