#include <stdio.h> volatile int a = 3; volatile int b = 7; int main (void) { volatile static int c; c = a + b; printf ("c = %d\n", c); return 0; }