Hatscale's Index

Last Updated: 05/14/2020 17:12

HTML examples

  1. Google Glass - Curso em Video

Special Symbols

< > ≤ ≥
£ ¥ €
© ® ™
‰ ∑ ∞ × ± ⊕ √ ≠
δ Δ λ Λ ω Ω φ Φ
← → ↑ ↓ ↔ ↗ ↗ ⇗
♠ ♣ ♥ ♦

sup normal sub

Code example:

            
    #include <stdio.h>
              
      int main(){
        int i, j, number = 1;
                
        for(i = 0; i < 5; i++){
          for(j = 0; j < 5; j++){
            printf("%d ", number);
          }
          printf("\n");
        } 
      }
              
          

Hello World