Write a program to print factorial of given number without using recursion?
No Answer is Posted For this Question
Be the First to Post Answer
what is diffrence between string and character array?
What is the difference between if else and switchstatement
Explain how does flowchart help in writing a program?
In C language, a variable name cannot contain?
Is null always defined as 0(zero)?
C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
pgm to find any error in linklist(in single linklist check whether any node points any of previous nodes instead of next node)
Q.11 Generate the following pattern using code in any language(c/c++/java) for n no. of rows 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1
What are dangling pointers? How are dangling pointers different from memory leaks?
write a c program to find the roots of a quadratic equation ax2 + bx + c = 0
11 Answers CSC, St Marys, TATA,
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
Not all reserved words are written in lowercase. TRUE or FALSE?