What are the 5 types of inheritance in c ++?
No Answer is Posted For this Question
Be the First to Post Answer
without using arithmatic operator solve which number is greater??????????
What is the advantage of using #define to declare a constant?
0 Answers Agilent, ZS Associates,
1) write a program to generate 1st n fibonacci prime numbers using Nested if 2) write a program to generate twin prime numbers from m to n using nested if 3) write a program to check whether a given integer is a strong number or not using nested if 4) Write a program to generate prime factors of a given integer using nested if 5)write a program to generate prime numbers from m to n using nested if 6)write a program to generate perfect numbers from m to n using nested if 7)write a program to generate the pallindromes from m to n using neste if 8)write a program to generate armstrong numbers from m to n using nested if 9)write a program to generate strong numbers from m to n using nested if
which will be first in c compiling ,linking or compiling ,debugging.
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
0 Answers Lovely Professional University,
what different between c and c++
How can I change the size of the dynamically allocated array?
When should a type cast be used?
Convert the following expression to postfix and prefix X $ Y Z - M + N + P / Q / (R + S)
What should malloc() do?
what is the difference b/w NULL and null?
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