The default return value from a function is int. In other words, unless explicitly specified the default return value by compiler would be integer value from function. When a programmer wants other ...
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...
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
What is sizeof operator? sizeof will return the number of bytes reserved for a variable or data type. The sizeof operator is a compile-time operator that returns an integer value. In other words sinc...