-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathw1p2.c
More file actions
42 lines (36 loc) · 1.28 KB
/
w1p2.c
File metadata and controls
42 lines (36 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* (Workshop 1 Part-2) */
/*
Full Name : MD ARAFAT KOYES
Student ID# : xxxxx
Email : xxxxx@myseneca.ca
Section : xxx
Authenticity Declaration:
I declare this submission is the result of my own work and has not been
shared with any other student or 3rd party content provider. This submitted
piece of work is entirely of my own creation.
*/
#include<stdio.h>
int main(void) {
printf("Workshop 1 Part-2\n");
printf("=================\n");
printf("\n");
printf("Using tab specifiers...\n");
printf("\tTab-1\tTab-2\tTab-3\n");
printf("\t-----\t=====\t-----\n");
printf("\n");
printf("\\ this is a back-slash character!\n");
printf("%% this is a percent sign character!\n");
printf("\" this is a double-quote character!\n");
printf("\n");
printf("My favourite quotes are:\n");
printf("1.\t\"Skill is only developed by hours and hours of work.\"\n");
printf("\t\t\t\t\t\t-Usain Bolt\n");
printf("\n");
printf("2.\t\"It's not about having time. It's about making time.\"\n");
printf("\t\t\t\t\t\t-unknown\n");
printf("\n");
printf("3.\t\"All of us do not have equal talent. But, all of us\n");
printf("\thave an equal opportunity to develop our talents.\"\n");
printf("\t\t\t\t\t\t-A.P.J. Abdul Kalam\n");
return 0;
}