You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#include "support.h"
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
if(argc > 1)
|
|
while(1)
|
|
puts(argv[1]);
|
|
else
|
|
while(1)
|
|
puts("y");
|
|
|
|
return 0;
|
|
}
|