fork(1) download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. int const anila=10;
  5. int *ptr=&anila;
  6. *ptr = 100;
  7. printf("%d",*ptr);
  8. return 0;
  9. }
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
100