What are two dimensional arrays alternatively called as?
No Answer is Posted For this Question
Be the First to Post Answer
What the different types of arrays in c?
What are pointers really good for, anyway?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference
What is #define in c?
Write a program to print factorial of given number using recursion?
related to rdbms query .
what is the height of tree if leaf node is at level 3. please explain
how can make variable not in registers
write a c program to find the roots of a quadratic equation ax2 + bx + c = 0
11 Answers CSC, St Marys, TATA,
10. 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
What is the difference between %d and %*d in C
Given an array of 1s and 0s arrange the 1s together and 0s together in a single scan of the array. Optimize the boundary conditions?