20 lines
192 B
C
20 lines
192 B
C
#include <stdio.h>
|
|
|
|
void print(char * x)
|
|
{
|
|
return;
|
|
}
|
|
|
|
int sum(int a, int b)
|
|
{
|
|
return a + b;
|
|
}
|
|
|
|
int main()
|
|
{
|
|
char * foo = "Hello, world!";
|
|
printf("This is a test.");
|
|
|
|
return sum(7, 15);
|
|
}
|