What is the difference between class and object in c?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

What are directives in c?

0 Answers  


Explain can you assign a different address to an array tag?

0 Answers  


I just typed in this program, and it is acting strangely. Can you see anything wrong with it?

0 Answers  


Differentiate b/w Modify and Update commands giving example.

1 Answers  


#include<stdio.h> #include<conio.h> 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.

2 Answers   Facebook,






How can I sort more data than will fit in memory?

0 Answers  


Compare array data type to pointer data type

0 Answers  


What is fflush() function?

0 Answers  


how can we use static and extern?and where can we use this?

3 Answers   Excel,


What is switch in c?

0 Answers  


What is the value of a[3] if integer a[] = {5,4,3,2,1}?

0 Answers  


compute the nth mumber in the fibonacci sequence?

10 Answers   Canon, HPL, Satyam, TCS,


Categories