IF Statement of C Language

What is IF Statement in Conditional Statement Ans If statement is used when we want to test a condition.Syntax :-If (){//statements ;  }Program :-#include<stdio.h>#include<conio.h> Void main(){Int password;Clrscr(); Printf(“entre the password”);Scanf(“%d”,&password); If(password==213){Printf(“hello gagan”);}Printf(“no entre the…

Escape Sequence of C Language

What is Escape Sequence of C Language Ans  An escape sequence in C programming language is a sequence of characters. Its doesn’t represent  itself when used inside string literal or…

Types of Operator in C Language

How many types of Operator in C Language Ans  11 Types of Operator Arithmetic Operators  (+,-,*,/,%)Comparison / Relational Operators (==,!=,>,<,>=,<=)Logical Operators (&&,||,!)Bitwise Operators (~,<<,>>)Assignment Operators (=,+=,_=,*=,/=)Miscellaneous operators (sizeof,&,*,?:)Increment Decrement (a++,a--,++a,--a)Operator Precedence Identity…

Operator of C Language

What is Operator of C Language Ans An operator is a symbol used to perform operations in  given Programming Language. we will look into operators used in the C Programming Language.…

Format Specifier of C Language

What is Format Specifier ? Ans Format specifier is a way to tell the compiler what type of data is in a variable during taking input displaying output to the…

Variable of C Language

A variable is one which stores some value and its value can be changed at any point of time.A name given to memory Location.A variable is also an identifier so…