6 lines
90 B
C
6 lines
90 B
C
#include <assert.h>
|
|
|
|
int main(int argc, char **argv) {
|
|
assert(argc != 1);
|
|
return 0;
|
|
}
|