558
views
0 votes
int main() { int i; for(i=1;i<=n;i++) f(i); } void f(int n) { int A[n]; int j; for(j=1;j<=n;j++) cout<<j; }What will be the time and space complexity of the following cod...
287
views
0 votes
what is the difference between a null pointer , a NULL macro ,the ASCII NUL Character and null string?
960
views
2 votes
Q. Assume the following C variable declarationint * M[10], N[10][10];of the following expressions.1. M [4]2. N 3. M [3]4. N [4]Which will not give compile time errors ...