Math, asked by Greenleaf, 10 months ago

⭐⭐⭐⭐⭐⭐⭐⭐⭐⭐⭐⭐⭐⭐

write the features of C language

And give the Arithmetic operators. ​

Answers

Answered by shruti720
0

The symbols which are used to perform logical and mathematical operations in a C program are called C operators. These C operators join individual constants and variables to form expressions.

Answered by Sauron
10
\textsf{\large{Answer :-}}

\textsf{\large{Features of C Language}}

• C has rich set of built in functions.

• C is a middle level language as it combines the capabilities of low level programming with features of high level language.

• It has a variety of data types such as character numeric and alphanumeric.

• These help us in re-using readily available programs.

• C programs are highly portable since the program written in one computer can be run on another computer.

• C is a structured programming language in which complex programs can be broken into modular form.

\textsf{\large{Arithmetic Operators :-}}

The arithmetic operators supported by C are given in the following table :-

Assume variable x holds 10 and variable y holds 20 then :-

Note :- The quotations used are not to be used in C program, it is used here to specify the Operators.

\begin{tabular}{|c|c|c|}\cline{1-3} OPERATOR & DESCRIPTION & EXAMPLE\\\cline{1-3}\ '+'& Adds two operands & x + y gives 30\\\cline{1-3}\ '-' &Subtracts two operands & x - y gives -10\\\cline{1-3}\ '*' & Multiplies two operands &x*y gives 200\\\cline{1-3}\ '/'&Divides two operands &y/x gives 2\\\cline{1-3}\%&Gives the remainder of division &y\%x gives 0\\\cline{1-3}\end{tabular}

pratyush4211: great
Sauron: Thank u ❤️❤️
Similar questions