Why is c known as a mother language?


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

Post New Answer

More C Interview Questions

How can I read a binary data file properly?

0 Answers  


What is meant by int fun const(int a, int b) { .... ... }

1 Answers  


What is dynamic variable in c?

0 Answers  


Why & is used in c?

0 Answers  


Is c functional or procedural?

1 Answers  






main() { int ptr[] = {1,2,23,6,5,6}; printf("%d",&ptr[3]-&ptr[0]); }

8 Answers   Vector,


How can I invoke another program (a standalone executable, or an operating system command) from within a c program?

0 Answers  


What is the difference between %d and %i?

0 Answers  


GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA

0 Answers  


int main() { int i=-1,j=-1;k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d%d%d%d%d",i,j,k,l,m); }

3 Answers   HCL,


main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }

4 Answers   Vector,


Give differences between - new and malloc() , delete and free() ?

0 Answers   Genpact,


Categories