Answer Posted / thavamoorthi
c does not support the method overloading it supported only by object oriented
| Is This Answer Correct ? | 20 Yes | 2 No |
Post New Answer View All Answers
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
Explain how does free() know explain how much memory to release?
What the different types of arrays in c?
Can you think of a logic behind the game minesweeper.
Explain what is the best way to comment out a section of code that contains comments?
Can we access the array using a pointer in c language?
How can you convert integers to binary or hexadecimal?
What is spaghetti programming?
Is array name a pointer?
What does stand for?
using only #include
How many bytes is a struct in c?
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
How can I remove the trailing spaces from a string?
What is the purpose of void pointer?