The declaration of main can be done as int main() One more declaration that can be taken by main is command line arguments form int main(int argc, char *argv[])
The arguments passed to function can be of two types 1. Values passed 2. Address passed The first type refers to call by value and the second type refers to call by reference.
The main functions can have in it arguments passed which are called as command line arguments. The command line arguments are two in number which are namely: Argument count denoted by argc and Argume...
What is the importance of header files? The main role of header file is it is used to share information among various files. In brief, if we have several functions say 4 functions named as f1, f2, f...
There are several format specifiers available in printf. The format specifier used varies depending on the data type used for printing. The given below are some of the format specifiers used with pri...
Switch statement is a powerful statement used to handle many alternatives and provides good presentation for C program. But there are some limitations with switch statement which are given below