#include <stdio.h>
#define object "universe"
int
main() {
printf("hello, %s!", object);
return 0;
}
hello, universe!
Getting up and running
Getting up and running
#include <stdio.h>
#define object "universe"
int
main() {
printf("hello, %s!", object);
return 0;
}