Q..What is c tokens? explain few of them

Ans.. token  in c is the most important element to be used in creating a program in c. we can define the token as the smallest individual element in c. for example, we cannot create a sentence without using words, similarly we cannot create a program in c. without using tokens in c. therefore, weContinue reading Q..What is c tokens? explain few of them

6.Bitwise operators:As the name suggest bitwise operators are the those operators that perform operations at level .These operation include : bitwise AND ,bitwise OR bitwise XOR and shift operators.

A.bitwise AND:like boolean AND (&&) bitwise (&) performs operation on bits instead of bytes ,char,integers etc.it oprends is 1 bit.it similar to the AND logical operators . Ex. 10101010 & 01010101=00000000 Int a =10 ,b=20,c=0; c=a&b; B. bitwise OR:when we use the bitwise OR operator (|),the bit in the first operand is OR ed withContinue reading “6.Bitwise operators:As the name suggest bitwise operators are the those operators that perform operations at level .These operation include : bitwise AND ,bitwise OR bitwise XOR and shift operators.”

5,Unary operators:

Unary operators act on single operands. C language supports three  unary operators unary minus,increment,and decrement operators. A.unary minus>>>Unary minus (-)operators is strikingly different from the binary arithmetic operator that operates on two operands and subtracts the second oprend from the first oprends. The unary operators is sign negative value  Ex: int a,b=10; a=-(b)          Here thisContinue reading “5,Unary operators:”

Q.what is c programing ? Explain few them.. 

ans=C programing is a general purpose ,procedural,imperative computer programing language devolved in Dennis M. Rithie at the the Telephone Laboratories to develop the UNIX operating system . C is the most widely used computer language .It keeps fluctuating at number one scale of popularity along with Java programing language,which is also equally popular and mostContinue reading “Q.what is c programing ? Explain few them.. “

Q.what is operator explain it Category?

Ans:an operators is symbol that specifies the mathematical,logical or relational operation to be performed.C language supports different types of operators ,which can be used with variables and constant to from expressions . $these operators can be categorized into the following major groups: 1.arithmetic operators  2 .relational operators  3.Equality operators  4.Logical operators 5. Unary operators  6.ConditionalContinue reading “Q.what is operator explain it Category?”

Design a site like this with WordPress.com
Get started