#include <stdio.h> 
int main () 
{ 

     /* This is a block comment, 
          it may extend 
             over 
          many lines */ 

     /* this is another comment */ 

     printf ("Hello Tim \n");  /* this is an inline comment */
     return (0); 
}  