1 2 3 4 5 6
#include <stdio.h> int main(void) { int c = 42; c = c * c + 42; printf("Having done stuff, c is now %d\n", c); }