1 votes
1 answer
3
#include <stdio.h>#define R 10#define C 20int main(){int (p)[R][C];printf("%d", sizeof(p));printf("\n%d",sizeof(*p));printf("\n%d",sizeof( p));getchar();return 0;} i...
0 votes
1 answer
4
1 votes
1 answer
5
foreign bank have stopped ________ in indiaa. to openb. for openingc. openingd open
1 votes
1 answer
6
is it quick sort is inplace algorithm. according to me it takes o(logn) space in best case and as i know any algo takes more then 0(1) spcae count as not inplace algo...