Skip to content

Tag Archives: C Basics

The format specifiers in C are used in formatted strings to represent the type of data to be printed. Different data types have different format… Read More
An escape sequence in C is a character or a sequence of characters that are used to represent characters that cannot be represented normally. One… Read More
In C language, a variable declared within a function or a block of code is called a local variable. Local variables are frequently used to… Read More
The main function is an integral part of most programming languages such as C, C++, and Java. This function is the entry level of a… Read More
In C language, printf function is used to print output on the screen.  This function is a part of the C standard library “stdio.h” and… Read More
The break statement is one of the four jump statements in the C language. The purpose of the break statement in C is for unconditional… Read More
Pre-requisite: Functions in C C return statement ends the execution of a function and returns the control to the function from where it was called.… Read More
The continue statement in C is a jump statement that is used to bring the program control to the start of the loop. We can… Read More
if else if ladder in C programming is used to test a series of conditions sequentially. Furthermore, if a condition is tested only when all… Read More
In C Programming language, there are many rules so to avoid different types of errors. One of such rule is not able to declare variable… Read More
The basic structure of a C program is divided into 6 parts which makes it easy to read, modify, document, and understand in a particular… Read More
Prerequisite: Variables in C In a programming language, each variable has a particular scope attached to them. The scope is either local or global. This… Read More
C is a procedural programming language. It was developed by Dennis Ritchie at the Bell Laboratories in the year 1972. Despite being old C is… Read More
The if-else statement in C is a flow control statement used for decision-making in the C program. It is one of the core concepts of… Read More
The if in C is the most simple decision-making statement. It consists of the test condition and if block or body. If the given condition… Read More