Tag: C Programming Language
Top 7 Programming Languages to learn in 2020
Programming languages are the building blocks of developing any application. It plays a vital role. The IT people must have some knowledge about the...
C program to check a number is even or odd without...
C program to check a number is even or odd without modulus or division condition.An integer number is even if it is completely divisible...
C program to print a statement without using semicolon ‘;’
Problem: Write a program in C programming language to print a statement without using semicolon ‘ ; ’.
Use of semicolon in C programming language:...
Pre decrement and Post decrement operator in C programming
As we saw that increment unary operator in C programming used to increments the value of the variable by 1. Similarly C language supports...
Pre Increment and Post Increment in C programming
Pre Increment and Post Increment concept in C programming is very important. Here we are discussing Unary operators with example and explanations so that...
‘continue’ keyword in C Programming language
Continue; Continue statement is a jump statement that is used to passes the control to the beginning of the loop. A continue statement transfer the...
‘break’ keyword in C Programming language
Break;
Break keyword in C programming language uses to passes control program execution out of the compound statement.
The break statement is a jump instruction or...
‘auto’ keyword of C programming language
auto:
In C programming language an auto keyword defines a local variable storage class that has a local or limited lifetime from the end of...
Keyword in C Programming Language – definition and examples
What is Keyword in C programming language?
In C programming language a predefined set of reserved words which provide computed control of various functions and...
Identifiers of C Programming Languages
In any programming language developer must to know how to name an identifier. An identifier (in programming language) is a combination of alphanumeric characters,...