What is the ANSI C Standard?


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

Post New Answer

More C Interview Questions

Can you please explain the difference between strcpy() and memcpy() function?

0 Answers  


Total of how many functions are available in c?

3 Answers  


What does the message "automatic aggregate intialization is an ansi feature" mean?

0 Answers  


What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?

0 Answers  


Define function pointers?

1 Answers  






main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }

3 Answers   ME,


How can I find leaf node with smallest level in a binary tree?

1 Answers  


Subtract Two Number Without Using Subtraction Operator

0 Answers  


What is dynamic dispatch in c++?

0 Answers  


Why do some versions of toupper act strangely if given an upper-case letter?

0 Answers  


write a program to sum of its digit with using control structure or with out using loop. for ex: let the number is 25634 then answer will be=2+5+6+3+4=20

4 Answers  


Why is #define used?

0 Answers  


Categories