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

What does. int *x[](); means ?

0 Answers   Wilco,


What are the functions to open and close file in c language?

0 Answers  


What is queue in c?

0 Answers  


Explain what is wrong in this statement?

0 Answers  


What are the different flags in C? And how they are useful? And give example for each in different consequences?

1 Answers  






what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }

3 Answers   Honeywell,


What is the difference between getch() and getche()?

1 Answers   NSPL,


write a program to print infinte number

4 Answers  


stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.

0 Answers  


What is a static function in c?

0 Answers  


difference of two no's with out using - operator

7 Answers  


Explain is it valid to address one element beyond the end of an array?

0 Answers  


Categories