/* Author Name: Baljeet S. Malhotra  */
/* Student ID:  XXXXXXXXXXX          */ 
/* Program Name: while loop example1 */
/* Program Description: Example      */
/* Date of creation: 14th Oct. 2004  */
/* Lab section: XX                   */

#include <iostream>

main() {

 int tempI = 0;

 while (true)
 {
  cout << "I'm in infinite while loop" <<endl;
 }
}

