SlideShare a Scribd company logo
Programs on Pointers
S.Manju
7/16/2016 1
Output ?
#include<stdio.h>
int main()
{
int *r , k=10;
r= &k;
printf("%un", &r);
printf("%un", r);
printf("%un", &k);
printf("%dn", *r);
getchar();
return 0;
}7/16/2016 2
Output ?
int main()
{
int *ptr ,y= 456;
ptr=&y;
printf("%dn", *&*&*ptr);
getchar();
return 0;
}
7/16/2016 3
Pointers to
pointers
Output ?
#include<stdio.h>
int main()
{
int *r,**d , k=100;
r=&k
d=&r
printf(“%d”, **d);
printf(“%d”, *d);
printf(“%d”, &d);
}
7/16/2016 4
Char Pointer
Output ?
int main()
{
char *ptr;
ptr = "google";
printf(“%s”,ptr);
printf(“%u”,&ptr);
printf(“%c”,ptr);
}
7/16/2016 5
Output ?
int main()
{
char *ptr = "google";
printf("%sn", *&*&ptr);
getchar();
return 0;
}
7/16/2016 6
Arrays and
Pointers
Output ?
7/16/2016 7
#include <stdio.h>
int MAX = 3;
int main ()
{
int var[] = {10, 100, 200};
int i, *ptr[MAX];
for ( i = 0; i < MAX; i++)
{
ptr[i] = &var[i];
}
for ( i = 0; i < MAX; i++)
{
printf("Value of var[%d] = %dn", i, *ptr[i] );
}
return 0; }
Output ?
7/16/2016 8
#include <stdio.h>
const int MAX = 4;
int main ()
{
char *names[] = { "Zara Ali",
"Hina Ali", "Nuha Ali", "Sara Ali", };
int i = 0;
for ( i = 0; i < MAX; i++)
{
printf("Value of names[%d] = %sn", i, names[i] );
}
return 0;
}
Functions
Output ?
#include<stdio.h>
main()
{
int x = 100;
add(&x);
printf(“%d”,x);
}
add(int *x)
{
*x=*x+100;
}
7/16/2016 9
Output ?
#include<stdio.h>
int *add(int *);
main()
{
int x = 100; int *pt;
pt=add(&x);
printf(“%d”,pt);
printf(“%d”,*pt); }
int *add(int *x)
{ *x=*x+100;
return (x);
}
7/16/2016 10

More Related Content

What's hot

11 1 포인터
11 1 포인터11 1 포인터
week-1x
week-1xweek-1x
C programs pbq final
C programs pbq finalC programs pbq final
C programs pbq final
Azad public school
 
week-2x
week-2xweek-2x
Program in ‘C’ language to implement linear search using pointers
Program in ‘C’ language to implement linear search using pointersProgram in ‘C’ language to implement linear search using pointers
Program in ‘C’ language to implement linear search using pointers
Dr. Loganathan R
 
week-18x
week-18xweek-18x
C & Python Introduction
C & Python IntroductionC & Python Introduction
C & Python Introduction
Spy Seat
 
Nested structure (Computer programming and utilization)
Nested structure (Computer programming and utilization)Nested structure (Computer programming and utilization)
Nested structure (Computer programming and utilization)
Digvijaysinh Gohil
 
Factorial
FactorialFactorial
C Language Programs
C Language Programs C Language Programs
C Language Programs
Mansi Tyagi
 
Prime number program in c
Prime number program in cPrime number program in c
Prime number program in c
Hitesh Kumar
 
Bcsl 033 data and file structures lab s5-3
Bcsl 033 data and file structures lab s5-3Bcsl 033 data and file structures lab s5-3
Bcsl 033 data and file structures lab s5-3
Dr. Loganathan R
 
Bcsl 033 data and file structures lab s2-1
Bcsl 033 data and file structures lab s2-1Bcsl 033 data and file structures lab s2-1
Bcsl 033 data and file structures lab s2-1
Dr. Loganathan R
 
Bcsl 033 data and file structures lab s3-1
Bcsl 033 data and file structures lab s3-1Bcsl 033 data and file structures lab s3-1
Bcsl 033 data and file structures lab s3-1
Dr. Loganathan R
 
Bcsl 033 data and file structures lab s5-2
Bcsl 033 data and file structures lab s5-2Bcsl 033 data and file structures lab s5-2
Bcsl 033 data and file structures lab s5-2
Dr. Loganathan R
 
week-11x
week-11xweek-11x
Ds
DsDs
Implement a queue using two stacks.
Implement a queue using two stacks.Implement a queue using two stacks.
Implement a queue using two stacks.
Dr. Loganathan R
 
Bcsl 033 data and file structures lab s3-2
Bcsl 033 data and file structures lab s3-2Bcsl 033 data and file structures lab s3-2
Bcsl 033 data and file structures lab s3-2
Dr. Loganathan R
 
week-21x
week-21xweek-21x

What's hot (20)

11 1 포인터
11 1 포인터11 1 포인터
11 1 포인터
 
week-1x
week-1xweek-1x
week-1x
 
C programs pbq final
C programs pbq finalC programs pbq final
C programs pbq final
 
week-2x
week-2xweek-2x
week-2x
 
Program in ‘C’ language to implement linear search using pointers
Program in ‘C’ language to implement linear search using pointersProgram in ‘C’ language to implement linear search using pointers
Program in ‘C’ language to implement linear search using pointers
 
week-18x
week-18xweek-18x
week-18x
 
C & Python Introduction
C & Python IntroductionC & Python Introduction
C & Python Introduction
 
Nested structure (Computer programming and utilization)
Nested structure (Computer programming and utilization)Nested structure (Computer programming and utilization)
Nested structure (Computer programming and utilization)
 
Factorial
FactorialFactorial
Factorial
 
C Language Programs
C Language Programs C Language Programs
C Language Programs
 
Prime number program in c
Prime number program in cPrime number program in c
Prime number program in c
 
Bcsl 033 data and file structures lab s5-3
Bcsl 033 data and file structures lab s5-3Bcsl 033 data and file structures lab s5-3
Bcsl 033 data and file structures lab s5-3
 
Bcsl 033 data and file structures lab s2-1
Bcsl 033 data and file structures lab s2-1Bcsl 033 data and file structures lab s2-1
Bcsl 033 data and file structures lab s2-1
 
Bcsl 033 data and file structures lab s3-1
Bcsl 033 data and file structures lab s3-1Bcsl 033 data and file structures lab s3-1
Bcsl 033 data and file structures lab s3-1
 
Bcsl 033 data and file structures lab s5-2
Bcsl 033 data and file structures lab s5-2Bcsl 033 data and file structures lab s5-2
Bcsl 033 data and file structures lab s5-2
 
week-11x
week-11xweek-11x
week-11x
 
Ds
DsDs
Ds
 
Implement a queue using two stacks.
Implement a queue using two stacks.Implement a queue using two stacks.
Implement a queue using two stacks.
 
Bcsl 033 data and file structures lab s3-2
Bcsl 033 data and file structures lab s3-2Bcsl 033 data and file structures lab s3-2
Bcsl 033 data and file structures lab s3-2
 
week-21x
week-21xweek-21x
week-21x
 

Viewers also liked

Позиционирование бренда города Москвы
Позиционирование бренда города МосквыПозиционирование бренда города Москвы
Позиционирование бренда города Москвы
Mikhail Ratts
 
Зачем бренду РОСНЕФТЬ команда LADA Sport WTCC?
Зачем бренду РОСНЕФТЬ команда LADA Sport WTCC?Зачем бренду РОСНЕФТЬ команда LADA Sport WTCC?
Зачем бренду РОСНЕФТЬ команда LADA Sport WTCC?
Mikhail Ratts
 
Проект разработки философии бренда ПФК ЦСКА
Проект разработки философии бренда ПФК ЦСКАПроект разработки философии бренда ПФК ЦСКА
Проект разработки философии бренда ПФК ЦСКА
Mikhail Ratts
 
Андрей Аршавин. Техника раскрытия медийного потенциала в web
Андрей Аршавин. Техника раскрытия медийного потенциала в webАндрей Аршавин. Техника раскрытия медийного потенциала в web
Андрей Аршавин. Техника раскрытия медийного потенциала в webDmitry Markov
 
Что такое инсайт и как его искать?
Что такое инсайт и как его искать?Что такое инсайт и как его искать?
Что такое инсайт и как его искать?
Mikhail Ratts
 
ФК Арсенал. Анализ бизнес-модели
ФК Арсенал. Анализ бизнес-моделиФК Арсенал. Анализ бизнес-модели
ФК Арсенал. Анализ бизнес-модели
Dmitry Markov
 
Футбол для всех
Футбол для всехФутбол для всех
Футбол для всех
SportsFFA
 
"Футбол как бизнес. Опыт ЕВРО-2016". Александр Денисов, Футбол1/Футбол2
"Футбол как бизнес. Опыт ЕВРО-2016". Александр Денисов, Футбол1/Футбол2"Футбол как бизнес. Опыт ЕВРО-2016". Александр Денисов, Футбол1/Футбол2
"Футбол как бизнес. Опыт ЕВРО-2016". Александр Денисов, Футбол1/Футбол2
TVbusinessconference
 

Viewers also liked (8)

Позиционирование бренда города Москвы
Позиционирование бренда города МосквыПозиционирование бренда города Москвы
Позиционирование бренда города Москвы
 
Зачем бренду РОСНЕФТЬ команда LADA Sport WTCC?
Зачем бренду РОСНЕФТЬ команда LADA Sport WTCC?Зачем бренду РОСНЕФТЬ команда LADA Sport WTCC?
Зачем бренду РОСНЕФТЬ команда LADA Sport WTCC?
 
Проект разработки философии бренда ПФК ЦСКА
Проект разработки философии бренда ПФК ЦСКАПроект разработки философии бренда ПФК ЦСКА
Проект разработки философии бренда ПФК ЦСКА
 
Андрей Аршавин. Техника раскрытия медийного потенциала в web
Андрей Аршавин. Техника раскрытия медийного потенциала в webАндрей Аршавин. Техника раскрытия медийного потенциала в web
Андрей Аршавин. Техника раскрытия медийного потенциала в web
 
Что такое инсайт и как его искать?
Что такое инсайт и как его искать?Что такое инсайт и как его искать?
Что такое инсайт и как его искать?
 
ФК Арсенал. Анализ бизнес-модели
ФК Арсенал. Анализ бизнес-моделиФК Арсенал. Анализ бизнес-модели
ФК Арсенал. Анализ бизнес-модели
 
Футбол для всех
Футбол для всехФутбол для всех
Футбол для всех
 
"Футбол как бизнес. Опыт ЕВРО-2016". Александр Денисов, Футбол1/Футбол2
"Футбол как бизнес. Опыт ЕВРО-2016". Александр Денисов, Футбол1/Футбол2"Футбол как бизнес. Опыт ЕВРО-2016". Александр Денисов, Футбол1/Футбол2
"Футбол как бизнес. Опыт ЕВРО-2016". Александр Денисов, Футбол1/Футбол2
 

Similar to Pointers

9.C Programming
9.C Programming9.C Programming
9.C Programming
Export Promotion Bureau
 
C basics
C basicsC basics
C basics
MSc CST
 
Best C Programming Solution
Best C Programming SolutionBest C Programming Solution
Best C Programming Solution
yogini sharma
 
Concepts of C [Module 2]
Concepts of C [Module 2]Concepts of C [Module 2]
Concepts of C [Module 2]
Abhishek Sinha
 
C questions
C questionsC questions
C questions
mohamed sikander
 
C lab programs
C lab programsC lab programs
C lab programs
Dr. Prashant Vats
 
C lab programs
C lab programsC lab programs
C lab programs
Dr. Prashant Vats
 
cpract.docx
cpract.docxcpract.docx
cpract.docx
PRATIKSHABHOYAR6
 
C PROGRAMS
C PROGRAMSC PROGRAMS
Unit2 C
Unit2 CUnit2 C
Unit2 C
arnold 7490
 
Unit2 C
Unit2 C Unit2 C
Unit2 C
arnold 7490
 
Pointer example
Pointer examplePointer example
Pointer example
University of Potsdam
 
C
CC
C- Programming Assignment 4 solution
C- Programming Assignment 4 solutionC- Programming Assignment 4 solution
C- Programming Assignment 4 solution
Animesh Chaturvedi
 
Pertemuan 05 - 06 Pemrograman C
Pertemuan 05 - 06 Pemrograman CPertemuan 05 - 06 Pemrograman C
Pertemuan 05 - 06 Pemrograman C
Nurdin Al-Azies
 
Pertemuan 03 - C
Pertemuan 03 - CPertemuan 03 - C
Pertemuan 03 - C
Nurdin Al-Azies
 
C programming
C programmingC programming
C programming
Karthikeyan A K
 
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
mhande899
 
Hargun
HargunHargun
lets play with "c"..!!! :):)
lets play with "c"..!!! :):)lets play with "c"..!!! :):)
lets play with "c"..!!! :):)
Rupendra Choudhary
 

Similar to Pointers (20)

9.C Programming
9.C Programming9.C Programming
9.C Programming
 
C basics
C basicsC basics
C basics
 
Best C Programming Solution
Best C Programming SolutionBest C Programming Solution
Best C Programming Solution
 
Concepts of C [Module 2]
Concepts of C [Module 2]Concepts of C [Module 2]
Concepts of C [Module 2]
 
C questions
C questionsC questions
C questions
 
C lab programs
C lab programsC lab programs
C lab programs
 
C lab programs
C lab programsC lab programs
C lab programs
 
cpract.docx
cpract.docxcpract.docx
cpract.docx
 
C PROGRAMS
C PROGRAMSC PROGRAMS
C PROGRAMS
 
Unit2 C
Unit2 CUnit2 C
Unit2 C
 
Unit2 C
Unit2 C Unit2 C
Unit2 C
 
Pointer example
Pointer examplePointer example
Pointer example
 
C
CC
C
 
C- Programming Assignment 4 solution
C- Programming Assignment 4 solutionC- Programming Assignment 4 solution
C- Programming Assignment 4 solution
 
Pertemuan 05 - 06 Pemrograman C
Pertemuan 05 - 06 Pemrograman CPertemuan 05 - 06 Pemrograman C
Pertemuan 05 - 06 Pemrograman C
 
Pertemuan 03 - C
Pertemuan 03 - CPertemuan 03 - C
Pertemuan 03 - C
 
C programming
C programmingC programming
C programming
 
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
 
Hargun
HargunHargun
Hargun
 
lets play with "c"..!!! :):)
lets play with "c"..!!! :):)lets play with "c"..!!! :):)
lets play with "c"..!!! :):)
 

Recently uploaded

Bonku-Babus-Friend by Sathyajith Ray (9)
Bonku-Babus-Friend by Sathyajith Ray  (9)Bonku-Babus-Friend by Sathyajith Ray  (9)
Bonku-Babus-Friend by Sathyajith Ray (9)
nitinpv4ai
 
Geography as a Discipline Chapter 1 __ Class 11 Geography NCERT _ Class Notes...
Geography as a Discipline Chapter 1 __ Class 11 Geography NCERT _ Class Notes...Geography as a Discipline Chapter 1 __ Class 11 Geography NCERT _ Class Notes...
Geography as a Discipline Chapter 1 __ Class 11 Geography NCERT _ Class Notes...
ImMuslim
 
How to Download & Install Module From the Odoo App Store in Odoo 17
How to Download & Install Module From the Odoo App Store in Odoo 17How to Download & Install Module From the Odoo App Store in Odoo 17
How to Download & Install Module From the Odoo App Store in Odoo 17
Celine George
 
CIS 4200-02 Group 1 Final Project Report (1).pdf
CIS 4200-02 Group 1 Final Project Report (1).pdfCIS 4200-02 Group 1 Final Project Report (1).pdf
CIS 4200-02 Group 1 Final Project Report (1).pdf
blueshagoo1
 
REASIGNACION 2024 UGEL CHUPACA 2024 UGEL CHUPACA.pdf
REASIGNACION 2024 UGEL CHUPACA 2024 UGEL CHUPACA.pdfREASIGNACION 2024 UGEL CHUPACA 2024 UGEL CHUPACA.pdf
REASIGNACION 2024 UGEL CHUPACA 2024 UGEL CHUPACA.pdf
giancarloi8888
 
Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...
Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...
Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...
TechSoup
 
78 Microsoft-Publisher - Sirin Sultana Bora.pptx
78 Microsoft-Publisher - Sirin Sultana Bora.pptx78 Microsoft-Publisher - Sirin Sultana Bora.pptx
78 Microsoft-Publisher - Sirin Sultana Bora.pptx
Kalna College
 
Level 3 NCEA - NZ: A Nation In the Making 1872 - 1900 SML.ppt
Level 3 NCEA - NZ: A  Nation In the Making 1872 - 1900 SML.pptLevel 3 NCEA - NZ: A  Nation In the Making 1872 - 1900 SML.ppt
Level 3 NCEA - NZ: A Nation In the Making 1872 - 1900 SML.ppt
Henry Hollis
 
How to Fix [Errno 98] address already in use
How to Fix [Errno 98] address already in useHow to Fix [Errno 98] address already in use
How to Fix [Errno 98] address already in use
Celine George
 
Oliver Asks for More by Charles Dickens (9)
Oliver Asks for More by Charles Dickens (9)Oliver Asks for More by Charles Dickens (9)
Oliver Asks for More by Charles Dickens (9)
nitinpv4ai
 
Electric Fetus - Record Store Scavenger Hunt
Electric Fetus - Record Store Scavenger HuntElectric Fetus - Record Store Scavenger Hunt
Electric Fetus - Record Store Scavenger Hunt
RamseyBerglund
 
KHUSWANT SINGH.pptx ALL YOU NEED TO KNOW ABOUT KHUSHWANT SINGH
KHUSWANT SINGH.pptx ALL YOU NEED TO KNOW ABOUT KHUSHWANT SINGHKHUSWANT SINGH.pptx ALL YOU NEED TO KNOW ABOUT KHUSHWANT SINGH
KHUSWANT SINGH.pptx ALL YOU NEED TO KNOW ABOUT KHUSHWANT SINGH
shreyassri1208
 
Temple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation resultsTemple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation results
Krassimira Luka
 
Gender and Mental Health - Counselling and Family Therapy Applications and In...
Gender and Mental Health - Counselling and Family Therapy Applications and In...Gender and Mental Health - Counselling and Family Therapy Applications and In...
Gender and Mental Health - Counselling and Family Therapy Applications and In...
PsychoTech Services
 
A Free 200-Page eBook ~ Brain and Mind Exercise.pptx
A Free 200-Page eBook ~ Brain and Mind Exercise.pptxA Free 200-Page eBook ~ Brain and Mind Exercise.pptx
A Free 200-Page eBook ~ Brain and Mind Exercise.pptx
OH TEIK BIN
 
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) CurriculumPhilippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
MJDuyan
 
Educational Technology in the Health Sciences
Educational Technology in the Health SciencesEducational Technology in the Health Sciences
Educational Technology in the Health Sciences
Iris Thiele Isip-Tan
 
Pharmaceutics Pharmaceuticals best of brub
Pharmaceutics Pharmaceuticals best of brubPharmaceutics Pharmaceuticals best of brub
Pharmaceutics Pharmaceuticals best of brub
danielkiash986
 
Contiguity Of Various Message Forms - Rupam Chandra.pptx
Contiguity Of Various Message Forms - Rupam Chandra.pptxContiguity Of Various Message Forms - Rupam Chandra.pptx
Contiguity Of Various Message Forms - Rupam Chandra.pptx
Kalna College
 
HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.
deepaannamalai16
 

Recently uploaded (20)

Bonku-Babus-Friend by Sathyajith Ray (9)
Bonku-Babus-Friend by Sathyajith Ray  (9)Bonku-Babus-Friend by Sathyajith Ray  (9)
Bonku-Babus-Friend by Sathyajith Ray (9)
 
Geography as a Discipline Chapter 1 __ Class 11 Geography NCERT _ Class Notes...
Geography as a Discipline Chapter 1 __ Class 11 Geography NCERT _ Class Notes...Geography as a Discipline Chapter 1 __ Class 11 Geography NCERT _ Class Notes...
Geography as a Discipline Chapter 1 __ Class 11 Geography NCERT _ Class Notes...
 
How to Download & Install Module From the Odoo App Store in Odoo 17
How to Download & Install Module From the Odoo App Store in Odoo 17How to Download & Install Module From the Odoo App Store in Odoo 17
How to Download & Install Module From the Odoo App Store in Odoo 17
 
CIS 4200-02 Group 1 Final Project Report (1).pdf
CIS 4200-02 Group 1 Final Project Report (1).pdfCIS 4200-02 Group 1 Final Project Report (1).pdf
CIS 4200-02 Group 1 Final Project Report (1).pdf
 
REASIGNACION 2024 UGEL CHUPACA 2024 UGEL CHUPACA.pdf
REASIGNACION 2024 UGEL CHUPACA 2024 UGEL CHUPACA.pdfREASIGNACION 2024 UGEL CHUPACA 2024 UGEL CHUPACA.pdf
REASIGNACION 2024 UGEL CHUPACA 2024 UGEL CHUPACA.pdf
 
Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...
Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...
Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...
 
78 Microsoft-Publisher - Sirin Sultana Bora.pptx
78 Microsoft-Publisher - Sirin Sultana Bora.pptx78 Microsoft-Publisher - Sirin Sultana Bora.pptx
78 Microsoft-Publisher - Sirin Sultana Bora.pptx
 
Level 3 NCEA - NZ: A Nation In the Making 1872 - 1900 SML.ppt
Level 3 NCEA - NZ: A  Nation In the Making 1872 - 1900 SML.pptLevel 3 NCEA - NZ: A  Nation In the Making 1872 - 1900 SML.ppt
Level 3 NCEA - NZ: A Nation In the Making 1872 - 1900 SML.ppt
 
How to Fix [Errno 98] address already in use
How to Fix [Errno 98] address already in useHow to Fix [Errno 98] address already in use
How to Fix [Errno 98] address already in use
 
Oliver Asks for More by Charles Dickens (9)
Oliver Asks for More by Charles Dickens (9)Oliver Asks for More by Charles Dickens (9)
Oliver Asks for More by Charles Dickens (9)
 
Electric Fetus - Record Store Scavenger Hunt
Electric Fetus - Record Store Scavenger HuntElectric Fetus - Record Store Scavenger Hunt
Electric Fetus - Record Store Scavenger Hunt
 
KHUSWANT SINGH.pptx ALL YOU NEED TO KNOW ABOUT KHUSHWANT SINGH
KHUSWANT SINGH.pptx ALL YOU NEED TO KNOW ABOUT KHUSHWANT SINGHKHUSWANT SINGH.pptx ALL YOU NEED TO KNOW ABOUT KHUSHWANT SINGH
KHUSWANT SINGH.pptx ALL YOU NEED TO KNOW ABOUT KHUSHWANT SINGH
 
Temple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation resultsTemple of Asclepius in Thrace. Excavation results
Temple of Asclepius in Thrace. Excavation results
 
Gender and Mental Health - Counselling and Family Therapy Applications and In...
Gender and Mental Health - Counselling and Family Therapy Applications and In...Gender and Mental Health - Counselling and Family Therapy Applications and In...
Gender and Mental Health - Counselling and Family Therapy Applications and In...
 
A Free 200-Page eBook ~ Brain and Mind Exercise.pptx
A Free 200-Page eBook ~ Brain and Mind Exercise.pptxA Free 200-Page eBook ~ Brain and Mind Exercise.pptx
A Free 200-Page eBook ~ Brain and Mind Exercise.pptx
 
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) CurriculumPhilippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
 
Educational Technology in the Health Sciences
Educational Technology in the Health SciencesEducational Technology in the Health Sciences
Educational Technology in the Health Sciences
 
Pharmaceutics Pharmaceuticals best of brub
Pharmaceutics Pharmaceuticals best of brubPharmaceutics Pharmaceuticals best of brub
Pharmaceutics Pharmaceuticals best of brub
 
Contiguity Of Various Message Forms - Rupam Chandra.pptx
Contiguity Of Various Message Forms - Rupam Chandra.pptxContiguity Of Various Message Forms - Rupam Chandra.pptx
Contiguity Of Various Message Forms - Rupam Chandra.pptx
 
HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.
 

Pointers