Printf Scanf C Tutorial

#include 
  int main(void)
  {
    char str[80], str2[80];
    int i;
    scanf("%79s", str);
    return 0;
  }