Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
back
//gcc 7.4.0 #include <stdio.h> //forward function declaration ... another C thing... lol void name10(void); void add2(void); int main(void) { name10(); int k=5; int l=6; add2(); return 0; } void name10(void) { for (int i=0; i<10; i++) { printf("Hello, Stephen!\n"); } } void add2(void){ printf("%d",k+l); }
run
|
edit
|
history
|
help
0
20171116_TARTAGLIA
use_of_bool_in_loop
Test 4
Vowel Assignment
a1
Practice flipping the stars
child process
709 lab 3.1
Sumit
Volume of a square pyramid With functions