7 lines
106 B
C++
7 lines
106 B
C++
#include <iostream>
|
|
|
|
int main( int argc, char ** )
|
|
{
|
|
printf( "this is a test %d", argc );
|
|
return 0;
|
|
}
|