What is the significance of an algorithm to C programming?
No Answer is Posted For this Question
Be the First to Post Answer
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; }
How will you delete a node in DLL?
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
What is an arrays?
write the program for maximum of the following numbers? 122,198,290,71,143,325,98
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
C passes By value or By reference?
5 Answers Geometric Software, Infosys,
write a c program to accept a given integer value and print its value in words
4 Answers Vernalis, Vernalis Systems,
3. Program to print all possible substrings. ex: String S St Str Stri Strin String t tr tri trin tring r
what are brk, sbrk?
What is the proper way of these job Tell me about there full work
int x=5; printf("%d%d%d",x,x<<2,x>>2);