#include <stdio.h>
void main( void )
{
printf("Teacher: Do you know programming\?\n"); //\? is used to print ?
printf("Student: No, I\'m not prepared.\n"); //\' is used to print '
printf("Teacher: Check D:\\Programming\\Tutorial for details.\n"); //\\ is used to print
printf("Student: Is the book \"C++ Bible\" good?\n"); //\" is used to print "
printf("Teacher: Yes, it is.\n");
}
void main( void )
{
printf("Teacher: Do you know programming\?\n"); //\? is used to print ?
printf("Student: No, I\'m not prepared.\n"); //\' is used to print '
printf("Teacher: Check D:\\Programming\\Tutorial for details.\n"); //\\ is used to print
printf("Student: Is the book \"C++ Bible\" good?\n"); //\" is used to print "
printf("Teacher: Yes, it is.\n");
}
Comments
Post a Comment