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.
What happens when we try to change the value of base address of the string? The base address of the sting takes a special place in the context of strings. This is because suing this base address onl...
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...