User Tools

Site Tools


Sidebar

Programming Reference/Librarys

Question & Answer

Q&A is closed







c:arithmetic_operators

arithmetic operators

* (multiplicator)
/ (dividing)
% (modulo) … e.g. rest of a number
+ -
++ –

example

#include <stdio.h>
 
int main (void) {
int x,y;
x=2;
 
x = x+1; // = 3
x = x++; // = 3
x = ++x; // = 3
x = +=x; // = 4
// and so on
 
/*
for the wired case of 
x = x+++x;
or 
x=x---x; 
 
that means 
x = x++ +x; 
and 
x = x-- -x;
 
 
also possible is
 
x = x- --x;
*/
}

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War
c/arithmetic_operators.txt · Last modified: 2024/02/16 00:48 (external edit)

Impressum Datenschutz