// demoIncludeProb.cc
// do we need to #include cstdlib and/or cstring
// P. Conrad 5/5/06

#include <iostream>

using namespace std;

int main(void)
{

  char name[] = "Adam";

  cout << strlen(name) << endl;

  cout << abs(-5) << endl;

  return 0;

}


// Comment: on strauss, on 5/5/06 we compiled this with both 
// CC and g++ and lo and behold the compiler did not complain,
// and the program worked fine... who knew?

