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 |
"%u" unsigned integer print the a) address of variable b) value of variable c) name of a variable d) none of the above
explain what is a newline escape sequence?
Difference between data structure and data base.
7 Answers CTS, Value Labs, Zoho,
How do you print an address?
consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value
write a program to print infinte number
What will be your course of action for a push operation?
What is Your Name :)
Explain can static variables be declared in a header file?
What is modifier & how many types of modifiers available in c?
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
to convert a string without using decrement operater and string functions