Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 3

Comsat University Abbottabad Department of BSE-2C

COMSAT UNIVERSITY ISLAMABAD


ABBOTTABAD CAMPUS

Course Title : PROGRAMMING LAB


Assignment NO : LAB 1
Written By : USAMA
Registration NO : CIIT/FA20-BSE-086/ABT
Section : C
Date : Saturday, MAY 01, 2021
Comsat University Abbottabad Department of BSE-2C

LAB 1:
Program Code:

// print "Hello World" Program

#include<stdio.h>
int main()
{
printf("Hello World");
return 0;
}
Output:
Comsat University Abbottabad Department of BSE-2C

LAB 2:
Simple program using Escape Sequence:
Program Code:
// program using Escape Sequence
#include<stdio.h>
int main()
{
printf("Hello \nWorld");
return 0;
}

Output:

You might also like