Basic algebra formulas that you can revise anytime and anywhere

FORMULAS FOR BEGINNER (a+b) ^2= a^2+b^2+2ab (a+b) ^2= (a-b) ^2+4ab (a-b) ^2= a^2+b^2-2ab (a-b) ^2= (a+b) ^2-4ab a^2+b^2= (a+b) ^2-2ab a^2+b^2= (a-b) ^2+ 2ab a^2-b^2= (a+b) (a-b) (a+b+c) ^2= a^2+b^2+c^2+2(ab+bc+ac) (a-b-c) ^2= a^2+b^2+c^2-2(ab-bc+ac) (a+b) ^3= a^3+b^3+3ab(a+b) (a-b) ^3= a^3-b^3+3ab(a-b) a^3+b^3= (a+b) (a^2-ab+b^2) a^3-b^3= (a-b) (a^2+ab+b^2) a^4-b^4= (a^2-b^2) (a^2+b^2) = (a^2+b^2) (a+b) (a-b) a^5+b^5= (a+b) (a^4-a^3b+a^2b^2-ab^3+b^4) a^5-b^5= (a-b) (a^4+a^3b+a^2b^2+ab^3+b^4)

Printf, scanf and Character escape sequences



Formatted Output - printf

It takes text and values from within the program and sends it out onto the screen.

printf(''%f is your weight\n'', w);
In the above program statement:

''%f is your weight\n'' is the control string
w   is the variable to be printed
%f   meaning that a floating point value is to be printed.
The number of conversion specifications and the number of variables following the control string must be same, and that the conversion character is correct for the type of the parameter.


Formatted Input - scanf

scanf is used to get input from user and to store it in the specified variable(s).
scanf(''%d'', &x);
read a decimal integer from the keyboard and store the value in the memory address of the variable x.


Character Escape Sequences

  There are several character escape sequences which can be used in place of a character constant or within a string.

\a alert (bell)
\b backspace
\f formfeed
\n newline
\r carriage return
\t tab
\v vertical tab
\ backslash
\? question mark
\' quote
\'' double quote
\ooo character specified as an octal number
\xhh character specified in hexadecimal



Comments

Popular posts from this blog

Are you willing to relocate or travel(HR QUESTION)

How to answer " why do you want to work at our company? "(HR QUESTION)