What is #include stdio h and #include conio h?
Why is a semicolon (;) put at the end of every program statement?
What are the different file extensions involved when programming in C?
What is the difference between a free-standing and a hosted environment?
What is the value of h?
write a program to display the array elements in reverse order in c language
A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
What does stand for?
What is modifier & how many types of modifiers available in c?
If you know then define #pragma?
What is the purpose of void in c?
#define FALSE -1 #define TRUE 1 #define NULL 0 main() { if(NULL) puts("NULL"); else if(FALSE) puts("TRUE"); else puts("FALSE"); }
Write a program to find the smallest and largest element in a given array in c language