Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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"

Answers were Sorted based on User's Feedback



Which of the following are valid "include" formats? A)#include and #include[file.h] B)#i..

Answer / safish

D

Is This Answer Correct ?    21 Yes 0 No

Which of the following are valid "include" formats? A)#include and #include[file.h] B)#i..

Answer / gopichandar

d

Is This Answer Correct ?    9 Yes 0 No

Which of the following are valid "include" formats? A)#include and #include[file.h] B)#i..

Answer / jj

ans-d.

1st one searches from current directory,
2nd one searches from list of directories specified in
inlcude path

Is This Answer Correct ?    6 Yes 1 No

Which of the following are valid "include" formats? A)#include and #include[file.h] B)#i..

Answer / rakshitha

Ans is D.. that is #include<file.h> and #include "file.h"

Is This Answer Correct ?    3 Yes 0 No

Which of the following are valid "include" formats? A)#include and #include[file.h] B)#i..

Answer / 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

Which of the following are valid "include" formats? A)#include and #include[file.h] B)#i..

Answer / shikhar

Usha, please donot write WRONG ANSWERS without
confirming....it is not a good practice...thx
The correct answer is D

Is This Answer Correct ?    2 Yes 1 No

Which of the following are valid "include" formats? A)#include and #include[file.h] B)#i..

Answer / rima

the ans is d.

Is This Answer Correct ?    2 Yes 1 No

Which of the following are valid "include" formats? A)#include and #include[file.h] B)#i..

Answer / shrinidhhi

Ans is "D".

Is This Answer Correct ?    1 Yes 1 No

Which of the following are valid "include" formats? A)#include and #include[file.h] B)#i..

Answer / belsia

The answer is "D".Because in c it is possible to use
double codes in the header file.so the correct
answers are
#include<file.h>
#include<"file.h"

Is This Answer Correct ?    1 Yes 1 No

Which of the following are valid "include" formats? A)#include and #include[file.h] B)#i..

Answer / usha

none are correct

Is This Answer Correct ?    1 Yes 3 No

Post New Answer

More C Interview Questions

There are N egg baskets and the number of eggs in each basket is a known quantity. Two players take turns to remove these eggs from the baskets. On each turn, a player must remove at least one egg, and may remove any number of eggs provided they all belong to the same basket. The player picking the last egg(s) wins the game. If you are allowed to decide who is going to start first, what mathematical function would you use to decide so that you end up on the winning side?

1 Answers   Hathway,


void main() { int a=1; while(a++<=1) while(a++<=2); }

4 Answers   HCL,


Is array a primitive data type in c?

0 Answers  


suppose we use switch statement and we intilize years name using enum statement like(jan,feb,mar,------dec) we take integer value as an input .question is that the month which we analyz is from 0 to 11 bt if i enter 12 than how he again starts from begning and print jan

1 Answers  


write a c program for swapping two strings using pointer

0 Answers  


how write a addtion of two single dimensional array using of pointer in c language?

3 Answers   DRDO,


Define macros.

0 Answers   Tech Mahindra,


How many types of functions are there in c?

0 Answers  


write a c program to add two integer numbers without using arithmetic operator +

13 Answers   Value Labs,


program in c to print 1 to 100 without using loop

9 Answers   Wipro,


Is it better to use malloc() or calloc()?

0 Answers   Aspire, Infogain,


any restrictions have on the number of 'return' statements that may be present in a function. a) no restriction b) only 2 return statements c) only 1 return statements d) none of the above

0 Answers  


Categories