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 / rima
the ans is d.
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
What is return type in c?
What is typeof in c?
How are portions of a program disabled in demo versions?
What are the functions to open and close file in c language?
What is huge pointer in c?
Is int a keyword in c?
What are the advantages of using new operator as compared to the function malloc ()?
What are nested functions in c?
how much salary u want ? why u join in our company? your domain is core sector why u prefer software ?
What is struct node in c?
What is the difference between #include
Are negative numbers true in c?
Between macros and functions,which is better to use and why?