what is difference between ANSI structure and C99 Structure?
Answer Posted / durgesh singh
Think You.............
| Is This Answer Correct ? | 5 Yes | 19 No |
Post New Answer View All Answers
What is getch?
How can you avoid including a header more than once?
Linked lists -- can you tell me how to check whether a linked list is circular?
How will you write a code for accessing the length of an array without assigning it to another variable?
What are the advantages of c language?
What is wrong with this program statement? void = 10;
What do the functions atoi(), itoa() and gcvt() do?
What is signed and unsigned?
Are local variables initialized to zero by default in c?
Explain the difference between malloc() and calloc() function?
Tell us something about keyword 'auto'.
What is a memory leak? How to avoid it?
What is the difference between declaring a variable by constant keyword and #define ing that variable?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
How can I automatically locate a programs configuration files in the same directory as the executable?