What is difference between function overloading and operator overloading?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

WHAT WILL BE OUTPUT OF BELOW CODE . . AND PLEASE EXPLAIN HOW IT COME .. #include<stdio.h> #include<conio.h> void main() { int k=20; printf("%d%d%d%d",k,k++,++k,k); getch(); }

25 Answers  


How will you find a duplicate number in a array without negating the nos ?

0 Answers  


what is uses of .net

0 Answers  


Explain threaded binary trees?

0 Answers  


2.Given the short c program that follows a. make a list of the memory variables in this program b.which lines of code contain operations that change the contents of memory? what are those operations? Void main( void) { Double base; Double height; Double area; Printf(“enter base and height of triangle :”); Scanf(“%lg”, &base); Scanf(“%lg”, &height); Area=base*height/2.0; Printf(“the area of the triangle is %g \n”,area); }

1 Answers   Wipro,


int i=0,j; j=++i + ++i ++i; printf(" %d",j);

2 Answers   ME,


what is the use of fflush() function?

2 Answers  


Write a program that takes a 5 digit number and calculates 2 power that number and prints it

7 Answers  


What is output redirection?

0 Answers  


Why is c called a structured programming language?

0 Answers  


What is selection sort in c?

0 Answers  


What does volatile do?

0 Answers  


Categories