Why c is called object oriented language?


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

Post New Answer

More C Interview Questions

#define MAX(x,y) (x) > (y) ? (x) : (y) main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i,j,k); } what will the values of i , j and k? }

14 Answers   CDAC, GATE, NDS, TCS,


write a program that will accept two integers and will implement division without using the division operator if the second value is an odd number and will implement multiplication without using multiplication operator if the second value is an even number.

1 Answers  


plz answer.... write a program that reads line (using getline) e.g."345", converts each line to an integer using "atoi" and computes the average of all the numbers read. also compute the standard deviation.

1 Answers  


Why are algorithms important in c program?

0 Answers  


Describe the modifier in c?

0 Answers  


Explain built-in function?

0 Answers  


What is the difference between c and python?

0 Answers  


Why do we use static in c?

0 Answers  


program to convert a integer to string in c language'

0 Answers  


State two uses of pointers in C?

0 Answers   Aspire, Infogain,


What is the equivalent code of the following statement in WHILE LOOP format?

0 Answers  


Print all the palindrome numbers.If a number is not palindrome make it one by attaching the reverse to it. eg:123 output:123321 (or) 12321

7 Answers   HCL,


Categories