Source code for test2.c (via source-highlight)
#include <stdio.h>
void subroutine() {
char buffer[100] = "hello world";
printf("%s\n",buffer);
}
int main() {
subroutine();
return 0;
}#include <stdio.h>
void subroutine() {
char buffer[100] = "hello world";
printf("%s\n",buffer);
}
int main() {
subroutine();
return 0;
}