Question: Which bitwise operator is suitable for checking whether a particular bit is on or off?
A
B
C
D
&& operator
B
& operator
C
|| operator
D
! operator
Note: Not available
#include<stdio.h> #include<stdlib.h> #define MAXROW 3 #define MAXCOL 4 int main() { int **p, i, j; p = (int **) malloc(MAXROW * sizeof(int*)); return 0; }