What is difference between function overloading and operator overloading?
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(); }
How will you find a duplicate number in a array without negating the nos ?
what is uses of .net
Explain threaded binary trees?
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); }
int i=0,j; j=++i + ++i ++i; printf(" %d",j);
what is the use of fflush() function?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it
What is output redirection?
Why is c called a structured programming language?
What is selection sort in c?
What does volatile do?