Directions to Solve Which of phrases given below each sentence should replace the phrase printed in bold type to make the grammatically correct? If the sentence is correct as it is, mark 'E' as the answer. A
were deferred to
B
had deferred with
C
No correction required
D
are deferred till
E
were deferred till
Share : |
A It will print 3
B It prints character equivalent of the binary number present in the first byte of a float variable a.
C It prints ASCII value of the binary number present in the first byte of a float variable a.
D It will print a garbage value
Share : |
A *k=&a
B k=&a;
C &k=*a
D **k=a;
Share : |
A k is a pointer to a pointer to a char
B k is a pointer to a pointer to a pointer to a char
C k is a pointer to a char pointer
D k is a pointer to a pointer to a pointer to a pointer to a char
Share : |
A Output: Garbage value
B Error: Invalid indirection
C Output: 3
D Output: 1
Share : |
A *pt='';
B pt='\0';
C *pt='\0';
D pt='\n';
Share : |
A *j=s;
B &j=s;
C *j=&s;
D j=s;
Share : |
A True
B False Share : |
A False
B True
Share : |
A True
B False Share : |