1#include <stdio.h> 2 3int f(int a, int b) 4{ 5 int c; 6 7 c = a + b; 8 9 return c; 10} 11 12int main() 13{ 14 char *bug = 0; 15 16 *bug = f(1, 2); 17 18 return 0; 19} 20 21