#include void show(int number) { printf("%d\n", number); } int main(void) { int x = 10; show(10); // it will show 10 return 0; }