Example #1
0
int main (void)
{
  testTwin (7);
  testTwin (13);
  testTwin (823);
  testTwin (2);
  testTwin (23);
  testTwin (100);
  testTwin (-3);
}
Example #2
0
File: main.c Project: sheab/cs137
int main (int argc, char *argv[])
{
  printf("args %d, %s", argc,argv[1]);
  testTwin (7);
  testTwin (13);
  testTwin (823);
  testTwin (2);
  testTwin (23);
  testTwin (100);
  testTwin (-3);
}