Can you please explain the difference between exit() and _exit() function?
Can you please explain the scope of static variables?
Is there a way to switch on strings?
What is the purpose of sprintf() function?
WHY DO WE USE A TERMINATOR IN C LANGUAGE?
main() { clrscr(); } clrscr();
Eight queens puzzle
Can include files be nested? How many levels deep can include files be nested?
Explain how do you determine whether to use a stream function or a low-level function?
please tell me the logic for this C program : INPUT (string):ABCD OUTPUT :BCDA CDAB DABC
write a program of bubble sort using pointer?
What is the difference between exit() and _exit() function?
2.Given the short c program that follows a. make a list of the memory variables in this program b.which lines of code contain operations that change the contents of memory? what are those operations? Void main( void) { Double base; Double height; Double area; Printf(“enter base and height of triangle :”); Scanf(“%lg”, &base); Scanf(“%lg”, &height); Area=base*height/2.0; Printf(“the area of the triangle is %g \n”,area); }