Why isnt any of this standardized in c?


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 exit() and _exit() function?

0 Answers  


How can I use a preprocessorif expression to ?

0 Answers  


Explain data types & how many data types supported by c?

0 Answers  


Differentiate abs() function from fabs() function.

0 Answers  


How the c program is executed?

0 Answers  






Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)

0 Answers  


How can I get the current date or time of day in a c program?

0 Answers  


How can you access memory located at a certain address?

0 Answers  


void main() { int *ptr; ptr = (int *) 0x400 ; printf("ptr=%d",ptr); } output?

1 Answers  


what is meant by the "equivalence of pointers and arrays" in C?

3 Answers   Satyam,


Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?

1 Answers   HCL,


What does volatile do?

0 Answers  


Categories