a.One Cannot Take the address of a Bit Field
b.bit fields cannot be arrayed
c.Bit-Fields are machine Dependant
d.Bit-fields cannot be declared as static
Which of the Following Statements are true w.r.t Bit-Fields
A)a,b&c B)Only a & b C)Only c D)All
Answers were Sorted based on User's Feedback
can any one tel me wt is the question pattern for NIC exam
What is difference between array and structure in c?
What is methods in c?
Write a program to identify if a given binary tree is balanced or not.
WHAT IS MAXIMUM SIZE OF AN ARRAY IN C LANGUAGE?
8 Answers Carphone Warehouse, IBM, SAS,
Why should I use standard library functions instead of writing my own?
can any one tell that i have a variable which is declared as static but i want this variable to be visible to the other files? how?
main() { int arr[5]={23,67}; printf("%d%d%d",arr[2],arr[3],arr[4]); }
Write a program to find the number of times that a given word(i.e. a short string) occurs in a sentence (i.e. a long string!). Read data from standard input. The first line is a single word, which is followed by general text on the second line. Read both up to a newline character, and insert a terminating null before processing. Typical output should be: The word is "the". The sentence is "the cat sat on the mat". The word occurs 2 times.
what is level of tree if leaf node is at level 4.please explain.
will the program compile? int i; scanf(ā%dā,i); printf(ā%dā,i);
What is output of the following program ? main() { i = 1; printf("%d %d %d\n",i,i++,i++); }