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
Write a program to replace n bits from the position p of the bit representation of an inputted character x with the one's complement. Method invertBit takes 3 parameters x as input character, p as position and n as the number of positions from p. Replace n bits from pth position in 8 bit character x. Then return the characters by inverting the bits.
What is extern keyword in c?
Can we declare a function inside a function in c?
What is sizeof array?
What is || operator and how does it function in a program?
When c language was developed?
What is %s and %d in c?
How can a program be made to print the line number where an error occurs?
Explain enumerated types.
What are the different types of C instructions?
Describe wild pointers in c?
a c code by using memory allocation for add ,multiply of sprase matrixes
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
Here is a neat trick for checking whether two strings are equal
What does do in c?