what is difference between overriding and overloading?
Answer / jothi16
overridding overloading
1.same function and same 1.same functin
argument diffrernt argument
| Is This Answer Correct ? | 5 Yes | 1 No |
What are pragmas and what are they good for?
Difference between null pointer and dangling pointer?
who invented c
How can I call a function, given its name as a string?
How many types of operator or there in c?
what is output of the following statetment?Printf(“%x”, -1<<4); ?
Explain what is the difference between #include and #include 'file' ?
How are structure passing and returning implemented?
Explain Linker and Loader
What are the c keywords?
#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?
What are the features of c languages?