what is uses of .net
No Answer is Posted For this Question
Be the First to Post Answer
Write a program of advanced Fibonacci series.
what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
which is an algorithm for sorting in a growing Lexicographic order
How to convert a binary number to Hexa decimal number?? (Note:Do not convert it into binary and to Hexadecimal)
Explain output of printf("Hello World"-'A'+'B'); ?
main() { int i,j,A; for(A=-1;A<=1;A++) prinf("%d\t",!!A); }
What is exit() function?
N O S I E R + A S T R A L ---------------- 7 2 5 6 1 3
What do you mean by c what are the main characteristics of c language?
Go through the following code sinippet char a[20]; a="Hello Orcale Test"; will this compile?
void main() { int i=5; printf("%d",i++ + ++i); }