How will you print on screen?
1.printf("\n");
2.printf(\ );
3. echo\\n;
4. printf("\\n");
#include <stdio.h> #include <string.h> int main(){ int i=0; for(;i<=2;) printf(" %d",++i); return 0; }
1. 0 1 2 3
2.0 1 2
3.1 2 3
4.compiler error
a-> is systematically correct if_____
1.a is a pointer to a structure in which b is a field
2.a and b are structure
3. a is a structure and b is a pointer to a structure
4.a is a pointer to a structure and b is a structure
Big O notation is defined for
1.time and space complexity
2.optimality
3.seaching
4.none of the above
C language was invented by
1.abacus
2.charles babage
3.thomson
4.dennis ritchie
The result of 0001 1010^0001 0000 is____
1.0101 1001
2.1010 0100
3.0000 0010
4.None of These
Unsigned integers occupies
1.two bytes
2. four bytes
3.one bytes
4. eight bytes