Part of Slepp's ProjectsPastebinTURLImagebinFilebin
Feedback -- English French German Japanese
Create Upload Newest Tools Donate
Sign In | Create Account

Advertising

advertising

related pastes to tag 'hexadecimal'

963189 - Learn Binary: binary hexadecimal
  1. #include <stdio.h>
  2. #include <string.h>
  3. #include <stdlib.h>
  4. #include <sys/time.h>
  5.  
  6. /* C doesn't even have TRUE and FALSE, isn't C silly? */
  7. #define FALSE 0
  8. #define TRUE 1
  9.  
826718 - Mine: hexadecimal
  1. <?PHP
  2. $charset = "0123456789ABCDEF";
  3. $hex = "0xB00B5";
  4. $dec = hexToDec($hex);
  5.  
  6. if(!$dec) { echo "Not a valid hexadecimal"; } else { echo "$hex in decimal = ".$dec; }
  7.  
  8. Function hexToDec($hex) {
  9.  
worth-right fantasy-obligation
fantasy-obligation