Size of short integer and long integer can be verified using the sizeof() operator.

2.1 Size of short integer and long integer can be verified using the sizeof() operator.
2.2 The expression a[0] and *a[0] are same for int a[100].
2.3 A structure can contain similar or dissimilar elements.
2.4 Right shift of an unsigned integer by one bit is equivalent to multiplying it by two.
2.5 Functions can be called either by value or by reference.
2.6 Bounds of the array index are checked during execution.
2.7 Every time we supply new set of values to the program at command prompt, we need to
recompile the program.
2.8 If the two strings are found to be unequal then strcmp returns difference between the first nonmatching pair of characters.
2.9 Singly-linked lists contain nodes which have a data field as well as a next field, which points to the next node in the linked list.
2.10 In computer programming, the translation of source code into object code is done by a compiler.


Leave a Reply