Paste: Check data and BSS addresses

Author: Sam
Mode: c
Date: Mon, 9 Nov 2009 08:45:45
Plain Text |
#include <stdio.h>

int a;
int b = 1;

int main()
{
  printf("&a = %p, &b = %p\n", &a, &b);
  return 0;
}

New Annotation

Summary:
Author:
Mode:
Body: