What is difference between class and structure?


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

Post New Answer

More C Interview Questions

What is call by value in c?

0 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 to add two numbers with using function?

4 Answers  


Differentiate between new and malloc(), delete and free() ?

0 Answers   iNautix,


Can we replace the struct function in tree syntax with a union?

0 Answers   Huawei,






how many argument we can pas in in a function

25 Answers   CTS,


why we are using float in C

4 Answers  


Explain what is the difference between far and near ?

0 Answers  


What is false about the following A compound statement is a.A set of simple statments b.Demarcated on either side by curly brackets c.Can be used in place of simple statement d.A C function is not a compound statement.

5 Answers   CCEM, TCS,


Is it possible to create recycle bin in mobiles?

2 Answers  


Write a program in c using only loops to print * * * * * *******

2 Answers   IBM,


Write a program or provide a pseudo code to flip the 2nd bit of the 32 bit number ! (Phone Screen)

1 Answers   NetApp, PTU, Wipro,


Categories