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 / kuamr
b
| Is This Answer Correct ? | 0 Yes | 8 No |
Post New Answer View All Answers
Explain what does the function toupper() do?
Explain how do you generate random numbers in c?
What is structure in c language?
What is build process in c?
Are bit fields portable?
What is the modulus operator?
What is the difference between exit() and _exit() function?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
what is the differnce between programing langauge and tool? is sas is a programing langauge r tool?
What is the difference between c &c++?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
What is wrong with this program statement? void = 10;
How can I determine whether a machines byte order is big-endian or little-endian?
Explain what are binary trees?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?