SlideShare a Scribd company logo
1 of 6
Download to read offline
3.Ders : C Fonksiyon Türleri
C Programlamada Kullanıcı Tanımlı Fonksiyon Türleri
Örnek: Bağımsız değişken değeri olan ve dönüş değeri olmayan
Fonksiyon
Örnek: Bağımsız değişken değeri ve dönüş değeri olmayan
Fonksiyon
Örnek: Bağımsız değişkenli ve dönüş değeri olmayan Fonksiyon
Örnek: Değişkenler ve bir dönüş değeri olan Fonksiyon
Hangi yaklaşım daha iyidir?
Aşağıdaki bu 4 program, kullanıcı tarafından girilen tam
sayının asal sayı olup olmadığını kontrol eder. Aşağıdaki tüm
bu programların çıktısı aynıdır ve her örnekte kullanıcı
tanımlı bir fonksiyon yarattık. Ancak, her örnekte
yaklaşımımız farklı.
Örnek 1: Hiçbir argümanın iletilmediği ve geri dönüş değerinin
olmaması durumu
#include <stdio.h>
void checkPrimeNumber();
int main()
{
checkPrimeNumber(); // argument is not passed
return 0;
}
void checkPrimeNumber()
{
int n, i, flag=0;
printf("pozitif bir tamsayı girin: ");
scanf("%d",&n);
for(i=2; i <= n/2; ++i)
{
if(n%i == 0)
{
flag = 1;
}
}
if (flag == 1)
printf("%d bir asal sayı değildir.", n);
else
printf("%d bir asal sayıdır.", n);
}
CheckPrimeNumber () fonksiyonu kullanıcıdan girdi alır, asal
sayı olup olmadığını kontrol eder ve ekranda görüntüler.
Fonksiyonun dönüş tipi geçersiz. Bu nedenle, işlevden hiçbir
değer döndürülmez.
Örnek 2: Hiçbir argümanın iletilmediği ancak geri dönüş
değerinin olması durumu
#include <stdio.h>
int getInteger();
int main()
{
int n, i, flag = 0;
n = getInteger(); // no argument is passed
for(i=2; i<=n/2; ++i)
{
if(n%i==0){
flag = 1;
break;
}
}
if (flag == 1)
printf("%d bir asal sayı değildir.", n);
else
printf("%d bir asal sayıdır.", n);
return 0;
}
int getInteger() // kullanıcı tarafından girilen tam sayıyı
döndürür
{
int n;
printf("pozitif bir tamsayı girin: ");
scanf("%d",&n);
return n;
}
N = getInteger () deyimi, işleve argüman iletilmediğini
belirtir. Ve, fonksiyondan döndürülen değer n’ye atanır.
Burada, getInteger () işlevi kullanıcıdan girdi alır ve onu
döndürür. Bir sayının asal olup olmadığını kontrol etmek için
gerekli kod main () işlevinin içindedir.
Örnek 3: Argümanların iletildiği ancak geri dönüş değerinin
olmaması durumu
#include <stdio.h>
void checkPrimeAndDisplay(int n);
int main()
{
int n;
printf("pozitif bir tamsayı girin: ");
scanf("%d",&n);
// n is passed to the function
checkPrimeAndDisplay(n);
return 0;
}
// void indicates that no value is returned from the function
void checkPrimeAndDisplay(int n)
{
int i, flag = 0;
for(i=2; i <= n/2; ++i)
{
if(n%i == 0){
flag = 1;
break;
}
}
if(flag == 1)
printf("%d bir asal sayı değildir.",n);
else
printf("%d bir asal sayıdır.", n);
}
Kullanıcı tarafından girilen tamsayı değeri
checkPrimeAndDisplay () işlevine geçirilir.
Burada, checkPrimeAndDisplay () işlevi, iletilen argümanın
asal bir sayı olup olmadığını kontrol eder ve uygun mesajı
görüntüler.
Örnek 4: Argümanların iletildiği ve geri dönüş değerinin
olması durumu
#include <stdio.h>
int checkPrimeNumber(int n);
int main()
{
int n, flag;
printf("pozitif bir tamsayı girin: ");
scanf("%d",&n);
variable
flag = checkPrimeNumber(n);
if(flag == 1)
printf("%d bir asal sayı değildir.",n);
else
printf("%d bir asal sayıdır.",n);
return 0;
}
int checkPrimeNumber(int n)
{
int i;
for(i=2; i <= n/2; ++i)
{
if(n%i == 0)
return 1;
}
return 0;
}
Kullanıcının girişi checkPrimeNumber () fonksiyonuna iletilir.
CheckPrimeNumber () fonksiyonu, iletilen argümanın asal olup
olmadığını kontrol eder. İletilen argüman bir asal sayıysa,
fonksiyon 0 döndürür. İletilen argüman asal olmayan bir
sayıysa, fonksiyon 1 döndürür. Dönüş değeri bayrak değişkenine
atanır.
Bayrağın 0 mı yoksa 1 mi olduğuna bağlı olarak, main ()
fonksiyonunda uygun bir mesaj yazdırılır.
Hangi yaklaşım daha iyidir?
Çözmeye çalıştığınız soruna bağlı. Çoğu durumda, argüman
iletme ve işlevden bir değer döndürme (örnek 4) daha iyidir.
Bir fonksiyon belirli bir görevi yerine getirmelidir.
CheckPrimeNumber () işlevi kullanıcıdan girdi almaz, sadece
bir sayının asal olup olmadığını kontrol eder, bu kodunuzun
anlaşılmasını ve hata ayıklamasını kolaylaştırır.

More Related Content

Featured

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by HubspotMarius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 

Featured (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

C fonksiyon-turleri

  • 1. 3.Ders : C Fonksiyon Türleri C Programlamada Kullanıcı Tanımlı Fonksiyon Türleri Örnek: Bağımsız değişken değeri olan ve dönüş değeri olmayan Fonksiyon Örnek: Bağımsız değişken değeri ve dönüş değeri olmayan Fonksiyon Örnek: Bağımsız değişkenli ve dönüş değeri olmayan Fonksiyon Örnek: Değişkenler ve bir dönüş değeri olan Fonksiyon Hangi yaklaşım daha iyidir? Aşağıdaki bu 4 program, kullanıcı tarafından girilen tam sayının asal sayı olup olmadığını kontrol eder. Aşağıdaki tüm bu programların çıktısı aynıdır ve her örnekte kullanıcı tanımlı bir fonksiyon yarattık. Ancak, her örnekte yaklaşımımız farklı. Örnek 1: Hiçbir argümanın iletilmediği ve geri dönüş değerinin olmaması durumu #include <stdio.h> void checkPrimeNumber(); int main() { checkPrimeNumber(); // argument is not passed return 0; } void checkPrimeNumber() {
  • 2. int n, i, flag=0; printf("pozitif bir tamsayı girin: "); scanf("%d",&n); for(i=2; i <= n/2; ++i) { if(n%i == 0) { flag = 1; } } if (flag == 1) printf("%d bir asal sayı değildir.", n); else printf("%d bir asal sayıdır.", n); } CheckPrimeNumber () fonksiyonu kullanıcıdan girdi alır, asal sayı olup olmadığını kontrol eder ve ekranda görüntüler. Fonksiyonun dönüş tipi geçersiz. Bu nedenle, işlevden hiçbir değer döndürülmez. Örnek 2: Hiçbir argümanın iletilmediği ancak geri dönüş değerinin olması durumu #include <stdio.h> int getInteger(); int main() { int n, i, flag = 0; n = getInteger(); // no argument is passed
  • 3. for(i=2; i<=n/2; ++i) { if(n%i==0){ flag = 1; break; } } if (flag == 1) printf("%d bir asal sayı değildir.", n); else printf("%d bir asal sayıdır.", n); return 0; } int getInteger() // kullanıcı tarafından girilen tam sayıyı döndürür { int n; printf("pozitif bir tamsayı girin: "); scanf("%d",&n); return n; } N = getInteger () deyimi, işleve argüman iletilmediğini belirtir. Ve, fonksiyondan döndürülen değer n’ye atanır. Burada, getInteger () işlevi kullanıcıdan girdi alır ve onu döndürür. Bir sayının asal olup olmadığını kontrol etmek için gerekli kod main () işlevinin içindedir. Örnek 3: Argümanların iletildiği ancak geri dönüş değerinin olmaması durumu
  • 4. #include <stdio.h> void checkPrimeAndDisplay(int n); int main() { int n; printf("pozitif bir tamsayı girin: "); scanf("%d",&n); // n is passed to the function checkPrimeAndDisplay(n); return 0; } // void indicates that no value is returned from the function void checkPrimeAndDisplay(int n) { int i, flag = 0; for(i=2; i <= n/2; ++i) { if(n%i == 0){ flag = 1; break; } } if(flag == 1) printf("%d bir asal sayı değildir.",n); else printf("%d bir asal sayıdır.", n); } Kullanıcı tarafından girilen tamsayı değeri checkPrimeAndDisplay () işlevine geçirilir. Burada, checkPrimeAndDisplay () işlevi, iletilen argümanın asal bir sayı olup olmadığını kontrol eder ve uygun mesajı
  • 5. görüntüler. Örnek 4: Argümanların iletildiği ve geri dönüş değerinin olması durumu #include <stdio.h> int checkPrimeNumber(int n); int main() { int n, flag; printf("pozitif bir tamsayı girin: "); scanf("%d",&n); variable flag = checkPrimeNumber(n); if(flag == 1) printf("%d bir asal sayı değildir.",n); else printf("%d bir asal sayıdır.",n); return 0; } int checkPrimeNumber(int n) { int i; for(i=2; i <= n/2; ++i) { if(n%i == 0) return 1; } return 0; }
  • 6. Kullanıcının girişi checkPrimeNumber () fonksiyonuna iletilir. CheckPrimeNumber () fonksiyonu, iletilen argümanın asal olup olmadığını kontrol eder. İletilen argüman bir asal sayıysa, fonksiyon 0 döndürür. İletilen argüman asal olmayan bir sayıysa, fonksiyon 1 döndürür. Dönüş değeri bayrak değişkenine atanır. Bayrağın 0 mı yoksa 1 mi olduğuna bağlı olarak, main () fonksiyonunda uygun bir mesaj yazdırılır. Hangi yaklaşım daha iyidir? Çözmeye çalıştığınız soruna bağlı. Çoğu durumda, argüman iletme ve işlevden bir değer döndürme (örnek 4) daha iyidir. Bir fonksiyon belirli bir görevi yerine getirmelidir. CheckPrimeNumber () işlevi kullanıcıdan girdi almaz, sadece bir sayının asal olup olmadığını kontrol eder, bu kodunuzun anlaşılmasını ve hata ayıklamasını kolaylaştırır.