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
lab pro v.05
Static scope
C_141113_Primo01
printing float 2 pointers
tom grey wolf
MailingList
incrementing values in an array
json formatter
Anutter juan
HelloWorld