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

main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } what is the output?

9 Answers   Ramco,


write a program to delete an item from a particular location of an linear array?

1 Answers  


how to construct a simulator keeping the logical boolean gates in c

0 Answers  


In c language can we compile a program without main() function?

0 Answers  


How would you sort a linked list?

1 Answers  






Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant

0 Answers  


What is the meaning of && in c?

0 Answers  


Are the outer parentheses in return statements really optional?

0 Answers  


Is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?

0 Answers  


program to find the ASCII value of a number

8 Answers  


WHAT IS FLOAT?

3 Answers  


Convert a distance from miles to kilometers .there are 5280 feets per mile,12 inches per foot .2.54 centimeters per inch and 100000centimeters per kilometer

0 Answers   TCS,


Categories