switch and if-else in C

We had already seen that both if-else and switch in C can be used for decision-making in a program. Let…

3 years ago

switch Statement in C

The switch statement in C provide us with an alternate way to implement the if-else if ladder in a much…

3 years ago

if-else Statement

As we have already seen that the if statement by itself will execute a single statement, or a group of…

3 years ago

Decision-Making in C

Decision-making in C, as the name suggests, is a way of performing different sets of actions depending on various circumstances.…

3 years ago

Escape Sequence in C

The escape sequence in C represents nongraphic characters (nongraphic characters are those characters that cannot be typed directly from the…

3 years ago

Format specifiers in C

Format Specifiers in C are used during input and output operations. They specify what kind of data is getting printed…

3 years ago

Comments in C

Comments in C are an explanation or description of the source code of the program. It helps a developer explain the…

3 years ago

Precedence of Operators in C

While executing an arithmetic operation the precedence of the operators in C as well as other programming language matters a…

3 years ago

Operators in C

Operators in C are symbols that are used to perform operations on operands(operands can be a constant, a variable, or…

3 years ago

Running Apache Kafka on Windows OS

Kafka requires Java 8 for running. And hence, this is the first step that we should do to install Kafka.

3 years ago