#include <stdio.h> void showNumber() { int x = 42; printf("Inside the function x is %d\n", x); } int main() { showNumber(); return 0; }
Click Run to execute this code.