How is a two dimensional array passed to function when the
order of matrix is not known at complie time?
Answer / mr.a
jus pass the name of array.....to a function as it was
getting into a pointer....
| Is This Answer Correct ? | 0 Yes | 0 No |
Do pointers take up memory?
Is main an identifier in c?
What is a macro in c preprocessor?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
what is computer
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
Is a pointer a kind of array?
#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } what are the outputs?
Table of Sudoku n*n
What is static and volatile in c?
What is formal argument?
What is the difference between c and python?