/* Basic printf use. */ #include int main() { int numSpoons = 5; printf( "I have %d spoons.\n", numSpoons ); return 0; }