Accenture Placement Paper Pattern

1.Study the Following Points:a.One Cannot Take the address of a Bit Fieldb.bit fields cannot be arrayedc.Bit-Fields are machine Dependantd.Bit-fields cannot be declared as staticWhich of the Following Statements are true w.r.t Bit-FieldsA)a,b&c B)Only a & b C)Only c D)All2.What is the function of ceil(X) defined in math.h do?A)It returns the value rounded down to the next lower integerB)it returns the value rounded up to the next higher integerC)the Next Higher ValueD)the next lower value3.Identify the correct argument for the function call fflush() inANSIC:A)stdoutB)stdinC)stderrD)All the above4.Which of the Following will define a type NODE that is a node in aLinkedlist?A)struct node {NODE*next;int x;};type def struct node NODE;B)typedef struct NODE {struct NODE *next;int x;};C)typedef struct NODE {NODE *next;int x;};D)typedef struct {NODE *next;int x;}NODE;5.Study the code:void show()main(){show();}void show (char *s){printf(\

 

This Question is not yet answered!

 
 

Related Answered Questions

 

Related Open Questions