If 4 digits number is input through the keyboard, Write a program to calculate sum of its 1st & 4th digit.
12 45257Write a C function to search a number in the given list of numbers. donot use printf and scanf
6 11272what 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; }
3 7564i want explaination about the program and its stack reprasetaion fibbo(int n) { if(n==1 or n==0) return n; else return fibbo(n-1)+fibbo(n-2); } main() { fibbo(6); }
2 4552The code is::::: if(condition) Printf("Hello"); Else Printf("World"); What will be the condition in if in such a way that both Hello and world are printed in a single attempt?????? Single Attempt in the sense... It must first print "Hello" and it Must go to else part and print "World"..... No loops, Recursion are allowed........................
HOV Services, IBM, Potty,
14 26361what is the other ways to find a logic to print whether a number is an even or odd wit out using % symbol??????? i know three different ways to print it. so i need any other different logic>>>>>
TCS,
5 8607
How will you find a duplicate number in a array without negating the nos ?
What is a pointer variable in c language?
How can I remove the trailing spaces from a string?
What is c basic?
Is c programming hard?
Where is volatile variable stored?
What is selection sort in c?
What are the 32 keywords in c?
Are pointers integer?
Explain the use of bit fieild.
What is const and volatile in c?
What is a void * in c?
Are pointers really faster than arrays?
given post order,in order construct the corresponding binary tree
In a switch statement, explain what will happen if a break statement is omitted?