SlideShare a Scribd company logo
1 of 88
Download to read offline
Statement; //Comment
Statement;
Statement;
/*Comment
Comment*/
Statement;
𝑥
int score;
;
int score;
;
int double char
• -3
• 0
• 300
• 3.14159
• -2.1
• 10000
• a
• *
• X
int score;
;
int score;
;
“Score” ≠ “score”
int
char
printf
scanf
if
else……
“Score” ≠ “score”
int
char
printf
scanf
if
else……
“Score” ≠ “score”
int
char
printf
scanf
if
else……
“Score” ≠ “score”
int
char
printf
scanf
if
else……
?score
Score score
int ?score; //Illegal
int score; //Legal
int no_score; //Legal
int Score; //Legal
int score;
score = 100;
int myScore = 60;
myScore = score;
= ;
int score;
score = 100;
int myScore = 60;
myScore = score;
= ;
score
int score;
score = 100;
int myScore = 60;
myScore = score;
= ;
score
100
int score;
score = 100;
int myScore = 60;
myScore = score;
= ;
score myScore
100 60
int score;
score = 100;
int myScore = 60;
myScore = score;
= ;
score myScore
100 100
+
-
*
/
%
a = 3+8;
c = 20%7;
b = a-100;
d = c*a;
e = d/10;
e = e+2;
a b c d e
a = 3+8;
c = 20%7;
b = a-100;
d = c*a;
e = d/10;
e = e+2;
a b c d e
11
a = 3+8;
c = 20%7;
b = a-100;
d = c*a;
e = d/10;
e = e+2;
a b c d e
11 6
a = 3+8;
c = 20%7;
b = a-100;
d = c*a;
e = d/10;
e = e+2;
a b c d e
11 6-89
a = 3+8;
c = 20%7;
b = a-100;
d = c*a;
e = d/10;
e = e+2;
a b c d e
11 6-89 66
a = 3+8;
c = 20%7;
b = a-100;
d = c*a;
e = d/10;
e = e+2;
a b c d e
11 6-89 66 6
a = 3+8;
c = 20%7;
b = a-100;
d = c*a;
e = d/10;
e = e+2;
a b c d e
11 6-89 66 8
++
--
a = 5;
a++;
b = 9;
b--;
a b
a = 5;
a++;
b = 9;
b--;
a b
5
a = 5;
a++;
b = 9;
b--;
a b
6
a = 5;
a++;
b = 9;
b--;
a b
6 9
a = 5;
a++;
b = 9;
b--;
a b
6 8
>
<
>=
<=
==
!=
1<2;
a=3;
a>5;
b=9;
18==b*2;
TRUE
FALSE
TRUE
(1>0) && (3>0)
(1>0) && (3<0)
TRUE
FALSE
(1>0) || (3>0)
(1>0) || (3<0)
(1<0) || (3<0)
TRUE
TRUE
FALSE
printf(“NTHUEE Rocks!”);
printf(“ ”);
int level = 19;
printf(“We are grade %d”, level);
printf(“ ”, ...);
%d
%c
%lf
int year = 2015;
int month = 8;
int day = 20;
printf(“Today is %d/%d/%d.”, year, month, day);
n
”
’
printf(“We are at ”NTHUEEECamp”, ”);
printf(“we are having a lot of fun!n”);
printf(“NTHUEE Rocks!”);
int level;
scanf(“%d”, &level);
printf(“We are grade %d”, level);
scanf(“ ”, & );
#include <stdio.h>
#include <stdlib.h>
int main(void){
int augend, addend, sum;
scanf(“%d”, &augend);
scanf(“%d”, &addend);
sum = augend + addend;
printf(“%d”, sum);
return 0;
}
#include <stdio.h>
#include <stdlib.h>
int main(void){
int augend, addend, sum;
scanf(“%d”, &augend);
scanf(“%d”, &addend);
sum = augend + addend;
printf(“%d”, sum);
return 0;
}
if(CONDITION){
STATEMENT_A;
}
else{
STATEMENT_B;
}
開始
CONDITION true STATEMENT_A
false
STATEMENT_B
結束
開始
沒有下雨? true 出去打球
false
留在宿舍
耍宅打 LOL
結束
int a;
scanf(“%d”, &a);
if(a>0){
printf(“%d is bigger than 0.n”, a);
}
else{
printf(“%d is smaller or equal to 0.n”, a);
}
if(CONDITION_A){
STATEMENT_A;
(Execute when CONDITION_A is TRUE)
}
else if(CONDITION_B){
STATEMENT_B;
(Execute when CONDITION_B is TRUE)
}
else{
STATEMENT_C;
(Execute when all FALSE)
}
開始
CONDITION_A true STATEMENT_A
false
CONDITION_B
false
STATEMENT_C
true STATEMENT_B
結束
開始
CONDITION_A true STATEMENT_A
false
CONDITION_B
false
STATEMENT_C
true STATEMENT_B
結束
int a, b;
scanf(“%d %d”, &a, &b);
if(a>b){
printf(“%d is bigger than %d.n”, a, b);
}
else if(a<b){
printf(“%d is smaller than %d.n”, a, b);
}
else{
printf(“%d is equal to %d.n”, a, b);
}
#include <stdio.h>
#include <stdlib.h>
int main(void){
int in;
scanf(“%d”, &in);
if((in%7)==0){
printf(“YES”);
}
else{
printf(“NO”);
}
return 0;
}
#include <stdio.h>
#include <stdlib.h>
int main(void){
int in;
scanf(“%d”, &in);
if((in%7)==0){
printf(“YES”);
}
else{
printf(“NO”);
}
return 0;
}
for(INITIALIZATION; CONDITION; INCREMENT/DECREMENT){
STATEMENT;
}
int a, sum=0;
for(a=1; a<=10; a++){
sum = sum + a;
printf(“%dn”, sum);
}
a sum
0
int a, sum=0;
for(a=1; a<=10; a++){
sum = sum + a;
printf(“%dn”, sum);
}
a sum
1 0
int a, sum=0;
for(a=1; a<=10; a++){
sum = sum + a;
printf(“%dn”, sum);
}
a sum
1 1
int a, sum=0;
for(a=1; a<=10; a++){
sum = sum + a;
printf(“%dn”, sum);
}
a sum
2 1
int a, sum=0;
for(a=1; a<=10; a++){
sum = sum + a;
printf(“%dn”, sum);
}
a sum
2 3
int a, sum=0;
for(a=1; a>=1; a++){
sum = sum + a;
printf(“%dn”, sum);
}
#include <stdio.h>
#include <stdlib.h>
int main(void){
int counter, units, tens, hundreds, sum;
for(counter = 100; counter <=999; counter++){
hundreds = counter/100;
tens = (counter/10)%10;
units = counter%10;
sum = hundreds*hundreds*hundreds +
tens*tens*tens +
units*units*units;
if(sum == counter){
printf("%dn", counter);
}
}
return 0;
}
#include <stdio.h>
#include <stdlib.h>
int main(void){
int counter, units, tens, hundreds, sum;
for(counter = 100; counter <=999; counter++){
hundreds = counter/100;
tens = (counter/10)%10;
units = counter%10;
sum = hundreds*hundreds*hundreds +
tens*tens*tens +
units*units*units;
if(sum == counter){
printf("%dn", counter);
}
}
return 0;
}
int w, h;
for(h=1; h<=3; h++){
for(w=1; w<=20; w++){
printf(“*”);
}
printf(“n”);
}
int w, h;
for(h=1; h<=3; h++){
for(w=1; w<=20; w++){
printf(“*”);
}
printf(“n”);
}
********************
********************
********************
h w
1 1~20
int w, h;
for(h=1; h<=3; h++){
for(w=1; w<=20; w++){
printf(“*”);
}
printf(“n”);
}
********************
********************
********************
h w
2 1~20
int w, h;
for(h=1; h<=3; h++){
for(w=1; w<=20; w++){
printf(“*”);
}
printf(“n”);
}
********************
********************
********************
h w
3 1~20
#include <stdio.h>
#include <stdlib.h>
int main(void){
int a, b;
for(a=1; a<=9; a=a+1){
for(b=1; b<=9; b=b+1){
printf(“%d*%d=%d ”, a, b, a*b);
}
printf(“n”);
}
return 0;
}
#include <stdio.h>
#include <stdlib.h>
int main(void){
int a, b;
for(a=1; a<=9; a=a+1){
for(b=1; b<=9; b=b+1){
printf(“%d*%d=%d ”, a, b, a*b);
}
printf(“n”);
}
return 0;
}
Introduction to Programming @ NTHUEEECamp 2015

More Related Content

What's hot (14)

JavaScript Gotchas
JavaScript GotchasJavaScript Gotchas
JavaScript Gotchas
 
Soundslide
SoundslideSoundslide
Soundslide
 
Tu1
Tu1Tu1
Tu1
 
Soundslide
SoundslideSoundslide
Soundslide
 
Javascript: Conceptos básicos
Javascript: Conceptos básicosJavascript: Conceptos básicos
Javascript: Conceptos básicos
 
P U P School Sembarambakkam
P U P School SembarambakkamP U P School Sembarambakkam
P U P School Sembarambakkam
 
Vcs4
Vcs4Vcs4
Vcs4
 
Alu all shift register
Alu all shift registerAlu all shift register
Alu all shift register
 
2 3. standard io
2 3. standard io2 3. standard io
2 3. standard io
 
Introduction to turbo c
Introduction to turbo cIntroduction to turbo c
Introduction to turbo c
 
Control flow in c
Control flow in cControl flow in c
Control flow in c
 
Introduction to turbo c
Introduction to turbo cIntroduction to turbo c
Introduction to turbo c
 
LCM
LCMLCM
LCM
 
Avl tree
Avl treeAvl tree
Avl tree
 

Similar to Introduction to Programming @ NTHUEEECamp 2015

Similar to Introduction to Programming @ NTHUEEECamp 2015 (20)

#2
#2#2
#2
 
Cpd lecture im 207
Cpd lecture im 207Cpd lecture im 207
Cpd lecture im 207
 
Vcs5
Vcs5Vcs5
Vcs5
 
Bti1022 lab sheet 8
Bti1022 lab sheet 8Bti1022 lab sheet 8
Bti1022 lab sheet 8
 
Bti1022 lab sheet 8
Bti1022 lab sheet 8Bti1022 lab sheet 8
Bti1022 lab sheet 8
 
Chap7_b Control Statement Looping (3).pptx
Chap7_b Control Statement Looping (3).pptxChap7_b Control Statement Looping (3).pptx
Chap7_b Control Statement Looping (3).pptx
 
9.C Programming
9.C Programming9.C Programming
9.C Programming
 
C언어 스터디 강의자료 - 1차시
C언어 스터디 강의자료 - 1차시C언어 스터디 강의자료 - 1차시
C언어 스터디 강의자료 - 1차시
 
C questions
C questionsC questions
C questions
 
LET US C (5th EDITION) CHAPTER 2 ANSWERS
LET US C (5th EDITION) CHAPTER 2 ANSWERSLET US C (5th EDITION) CHAPTER 2 ANSWERS
LET US C (5th EDITION) CHAPTER 2 ANSWERS
 
Practical File of C Language
Practical File of C LanguagePractical File of C Language
Practical File of C Language
 
Simple C programs
Simple C programsSimple C programs
Simple C programs
 
Programming for Problem Solving
Programming for Problem SolvingProgramming for Problem Solving
Programming for Problem Solving
 
5th Sem SS lab progs
5th Sem SS lab progs5th Sem SS lab progs
5th Sem SS lab progs
 
C language concept with code apna college.pdf
C language concept with code apna college.pdfC language concept with code apna college.pdf
C language concept with code apna college.pdf
 
Bai Giang 11
Bai Giang 11Bai Giang 11
Bai Giang 11
 
C workshop day 6
C workshop day 6C workshop day 6
C workshop day 6
 
ADA FILE
ADA FILEADA FILE
ADA FILE
 
C lab programs
C lab programsC lab programs
C lab programs
 
C lab programs
C lab programsC lab programs
C lab programs
 

Recently uploaded

High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSRajkumarAkumalla
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
High Profile Call Girls Dahisar Arpita 9907093804 Independent Escort Service ...
High Profile Call Girls Dahisar Arpita 9907093804 Independent Escort Service ...High Profile Call Girls Dahisar Arpita 9907093804 Independent Escort Service ...
High Profile Call Girls Dahisar Arpita 9907093804 Independent Escort Service ...Call girls in Ahmedabad High profile
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...ranjana rawat
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSISrknatarajan
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).pptssuser5c9d4b1
 

Recently uploaded (20)

High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
 
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service NashikCall Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
Call Girls Service Nashik Vaishnavi 7001305949 Independent Escort Service Nashik
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
High Profile Call Girls Dahisar Arpita 9907093804 Independent Escort Service ...
High Profile Call Girls Dahisar Arpita 9907093804 Independent Escort Service ...High Profile Call Girls Dahisar Arpita 9907093804 Independent Escort Service ...
High Profile Call Girls Dahisar Arpita 9907093804 Independent Escort Service ...
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSIS
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
247267395-1-Symmetric-and-distributed-shared-memory-architectures-ppt (1).ppt
 

Introduction to Programming @ NTHUEEECamp 2015