What is the difference between exit() and _exit() function in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is scope and lifetime of a variable in c?
What is the scope of an external variable in c?
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
HOW TO SWAP TWO NOS IN ONE STEP?
Prove or disprove P!=NP.
What is period operator in c?
What is scope of variable in c?
Is struct oop?
What is difference between stdio h and conio h?
Why can’t we compare structures?
Does c have enums?
a memory of 20 bytes is allocated to a string declared as char *s then the following two statements are executed: s="Etrance" l=strlen(s); what is the value of l ? a.20 b.8 c.9 d.21