Factorial Number: The product of an integer and all the integers below it; e.g. factorial four ( 4! ) is equal to 24. 4! = 4 × 3 × 2 × 1 = 24 Code #include <stdio.h> unsigned long long int factorial(unsigned int i) { if(i
Read MoreTag: Programming
PHP Basic Tutorial – Operator Types
Operator: An operator is a symbol that tells the compiler to perform certain mathematical or logical manipulations. PHP language supports following type of operators. Arithmetic Operators Comparison Operators Logical (or Relational) Operators Assignment Operators Conditional (or ternary) Operators Arithmetic Operators + – * / ++ — % Comparison Operators == != > < >=
Read More