what is object oriental programing?
Answer / nirmal kumar tailor
Object means instance of the class.
object oriented means you can access all the class member
with the help of class object so this is called object
oriented language.
Is This Answer Correct ? | 4 Yes | 1 No |
what is the benefit of c30
Can we change the value of constant variable in c?
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }
difference between string and array?
How do you determine a file’s attributes?
What is the size of enum in bytes?
How can I discover how many arguments a function was actually called with?
Explain the use of keyword 'register' with respect to variables.
How to delete a node from linked list w/o using collectons?
Explain continue keyword in c
How do you determine whether to use a stream function or a low-level function?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?