What is an object?

Answer Posted / shruti

An object is the instance of the class..

it is the only gateway to access the entities defined in
the class..

Is This Answer Correct ?    7 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

#include #include struct stu { int i; char j; }; union uni { int i; char j; }; void main() { int j,k; clrscr(); struct stu s; j=sizeof(s); printf("%d",j); union uni u; k=sizeof(u); printf("%d",k); getch(); } what is value of j and k.

5175


please can any one suggest me best useful video tutorials on c i am science graduate.please help me.u can email me to sas29@in.com

1315


What is difference between structure and union?

589


difference between native and cross compilers

1664


Can you assign a different address to an array tag?

691






write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.

14941


Explain indirection?

634


What does c mean in basketball?

552


write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.

4973


When I tried to go into a security sites I am denied access and a message appeared saying 'applet not initialize'. How can I rectify this problem.

1519


What is volatile, register definition in C

679


Explain how do I determine whether a character is numeric, alphabetic, and so on?

644


Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)

681


What are the modifiers available in c programming language?

725


Explain About fork()?

637