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 |
C program to find all possible outcomes of a dice?
Define the scope of static variables.
What are the types of data structures in c?
implement NAND gate logic in C code without using any bitwise operatior.
What is line in c preprocessor?
WAP that prints the number from 1 to 100. but for multiplies of three print "XXX" instead of the number and for the multiplies of five print "YYY" . for number which are multiplies of both three and five print "ZZZ"
How do you define a string?
Study the code: void show() main() { show(); } void show (char *s) { printf("%sn",s); } What will happen if it is compiled & run on an ANSI C Compiler? A)It will compile & nothing will be printed when it is executed B)it will compile but not link C)the compiler will generate an error D)the compiler will generate a warning
Why static variable is used in c?
how should functions be apportioned among source files?
Can you apply link and association interchangeably?
main() { int ptr[] = {1,2,23,6,5,6}; printf("%d",&ptr[3]-&ptr[0]); }