fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. char caractere, *caractere_ptr = &caractere;
  5. printf("Caractere: foi alocado %zu byte\n", sizeof(caractere));
  6. printf("Endereço: %p", caractere_ptr);
  7. }
  8.  
  9. //http://pt.stackoverflow.com/q/179344/101
Success #stdin #stdout 0s 2168KB
stdin
Standard input is empty
stdout
Caractere: foi alocado 1 byte
Endereço: 0xffa4875b