Nested function in C

Mursal Zheker Selasa, Desember 31, 2013
What is nested function? If a function is defined inside another function, then it is called as nested function.  Nested function example in...Read More
Nested function in C Nested function in C Reviewed by Mursal Zheker on Selasa, Desember 31, 2013 Rating: 5

Static function in c

Mursal Zheker Selasa, Desember 31, 2013
What is static function in C? Static function is nothing but a function that is callable only by other functions in the same file where the ...Read More
Static function in c Static function in c Reviewed by Mursal Zheker on Selasa, Desember 31, 2013 Rating: 5

main function in C

Mursal Zheker Selasa, Desember 31, 2013
main() function is mandatory for any C program.  Because, the program execution starts from main() .  Default return type for main function...Read More
main function in C main function in C Reviewed by Mursal Zheker on Selasa, Desember 31, 2013 Rating: 5

How to call functions using function pointers?

Mursal Zheker Selasa, Desember 31, 2013
What is function pointer? Every function has an address.  We can assign the address of functions to pointers.  Then those pointers are calle...Read More
How to call functions using function pointers? How to call functions using function pointers? Reviewed by Mursal Zheker on Selasa, Desember 31, 2013 Rating: 5

Variable arguments in C

Mursal Zheker Selasa, Desember 31, 2013
In C language, its possible to write functions with variable arguments.  A function that takes variable number of arguments is also called a...Read More
Variable arguments in C Variable arguments in C Reviewed by Mursal Zheker on Selasa, Desember 31, 2013 Rating: 5

Call by value vs call by reference

Mursal Zheker Senin, Desember 30, 2013
Difference between call by value and call by reference There are two types of parameter passing schemes.      1. Call by value      2. Call ...Read More
Call by value vs call by reference Call by value vs call by reference Reviewed by Mursal Zheker on Senin, Desember 30, 2013 Rating: 5

Comma operator in C

Mursal Zheker Senin, Desember 30, 2013
Basically, comma operator is used to separate expressions.  Consider the following, i++, j++, k++, val = val + 10; Here, there are four expr...Read More
Comma operator in C Comma operator in C Reviewed by Mursal Zheker on Senin, Desember 30, 2013 Rating: 5

sizeof operator in C

Mursal Zheker Minggu, Desember 29, 2013
It is used to find the size(in bytes) of data type or variable.  Consider the following examples, Example 1: int arr[100]; sizeof(int)      ...Read More
sizeof operator in C sizeof operator in C Reviewed by Mursal Zheker on Minggu, Desember 29, 2013 Rating: 5

Pointer operators in C

Mursal Zheker Minggu, Desember 29, 2013
There are two types of pointer operators.  They are 1. Address operator(&) 2. Indirection operator(*) Address Operator: It is used to ge...Read More
Pointer operators in C Pointer operators in C Reviewed by Mursal Zheker on Minggu, Desember 29, 2013 Rating: 5

Bitwise shift operators with example

Mursal Zheker Minggu, Desember 29, 2013
There are two types of shift operators.  They are 1. Left shift operator (<<) 2. Right shift operator(>>) Left shift operator: I...Read More
Bitwise shift operators with example Bitwise shift operators with example Reviewed by Mursal Zheker on Minggu, Desember 29, 2013 Rating: 5

Null statement

Mursal Zheker Sabtu, Desember 28, 2013
If a statement has only semicolon, then it is called as null statement. Syntax:   ; What is the purpose of null statement? do nothing Exampl...Read More
Null statement Null statement Reviewed by Mursal Zheker on Sabtu, Desember 28, 2013 Rating: 5

Compound statement

Mursal Zheker Sabtu, Desember 28, 2013
Compound statement is a set of statements or no statements enclosed within set braces. It is also called as blocks.  Compounds statements ar...Read More
Compound statement Compound statement Reviewed by Mursal Zheker on Sabtu, Desember 28, 2013 Rating: 5

Expression statement

Mursal Zheker Sabtu, Desember 28, 2013
It is possible to convert expressions into statements.  All we need to do is add a semicolon at the end of expressions.  Consider the follow...Read More
Expression statement Expression statement Reviewed by Mursal Zheker on Sabtu, Desember 28, 2013 Rating: 5

for, while, do-while difference

Mursal Zheker Sabtu, Desember 28, 2013
Now, we are going to see the following in detail. difference between while and do while difference between for and do while difference betwe...Read More
for, while, do-while difference for, while, do-while difference Reviewed by Mursal Zheker on Sabtu, Desember 28, 2013 Rating: 5

Control flow overview

Mursal Zheker Jumat, Desember 27, 2013
Control flow tell us the order in which instructions need to be executed.  Basically, control statements are of three types. 1. Conditional ...Read More
Control flow overview Control flow overview Reviewed by Mursal Zheker on Jumat, Desember 27, 2013 Rating: 5

scanf() and printf() functions

Mursal Zheker Jumat, Desember 27, 2013
Scanf() function: It is used to read input from the keyboard. int scanf(const char *format, ...); For better understanding, lets rewrite the...Read More
scanf() and printf() functions scanf() and printf() functions Reviewed by Mursal Zheker on Jumat, Desember 27, 2013 Rating: 5
Diberdayakan oleh Blogger.