Language Basics C

#include 
int main(void)
{
  char ch;
  ch = getchar(), /* notice the comma here */
  putchar(ch+1);
  return 0;
}