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 / gopichandar
d
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
Why C language is a procedural language?
What Is The Difference Between Null And Void Pointer?
What is the best way to comment out a section of code that contains comments?
What are the primitive data types in c?
Which control loop is recommended if you have to execute set of statements for fixed number of times?
Explain how can you tell whether a program was compiled using c versus c++?
Why structure is used in c?
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
what is diffrence between linear and binary search in array respect to operators?what kind of operator can be used in both seach methods?
One of the Institutes contains 5 student groups. Every group contains 4 students. Institute wants to store student group’s details in array. Group should contain group member’s details (name and registration number and age), project name, and mark of the group.
What is s in c?
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
What is methods in c?
Is array a primitive data type in c?
What do you mean by a local block?