Type conversion in C Programming
What is Type Conversion in C Programming? Type conversion means, conversion of one type to another. There are two types of type conversion, they are Implicit type conversionExplicit type conversion…
What is Type Conversion in C Programming? Type conversion means, conversion of one type to another. There are two types of type conversion, they are Implicit type conversionExplicit type conversion…
In C programming language you can check the size of a variable using sizeof operator. In order to use sizeof the zoperator, you can pass variable to the operator. Example:…
What is header file? The file with .h extension is called a header file in C. These header files generally contain function declarations. For example to use scanf() in our…
What is Constant Qualifier in C? Constant qualifier is used to declare a variable as contant. If we dont want a variable to change its value then we can use…
Introduction "Hello World! C Program" can be easily written in c programming language using printf function which prints characters on to terminal. For using printf first we have to include…
Scope rules in C programming refers to the accessibility or validity of a variable within a certain region of a program. Otherwise, you can say in general as it is…
Literals in c are fixed values whose values cannot be changed during the execution of a program. Literal contains memory but no reference to it. There are four types of…
If you are searching for loops in c then you are at the right blog post. Loops in c: Programming languages provide control structure which makes the programmer to run…
What is an Array ? Arrays in c programming language is set of elements of same data type. Array is stored in continuous storage space. If you dont know about…
What is a Function? Function is the group of statements which performs specific task. int add(int m, int n) { int c; c=m+n; printf("value is %d \n",c); } The above…