Showing posts with label Programming in 'C'. Show all posts
Showing posts with label Programming in 'C'. Show all posts
Prototype in C/C++

Prototype in C/C++

C / C++ में Prototype क्या होता है:- 


किसी भी Model के प्रारम्भिक रूप को Prototype कहा जाता है, फिर वह Model किसी भी प्रकार का हो सकता है।



Prototype in C/C++


Example-किसी Builder के लिए किसी नई Building का नक्शा या Blue Print उस Builder के लिए Building का Prototype है। इसी तरह से किसी Automobile Company के लिए किसी नई Car का Model नई बनाई जाने वाली कार का Prototype है। Programming Concept के अन्तर्गत  “C” “C++” Programming Languages में ही Prototype शब्द का प्रयोग किया जाता है।

जब हम  “C” व “C++” Programming Languages में कोई प्रोग्राम बनाते हैं, तो अलग-अलग तरह की जरूरतों को पूरा करने के लिए हम अलग-अलग तरह के Functions Create करते हैं, जिन्हें User Defined Functions कहा जाता है।

चूंकि इन Functions को Programmers अपनी जरूरत के अनुसार स्वयं Create करते हैं, इसलिए सामान्यतः  “C” व “C++” Programming Languages के  Compilers को इन नए बनाए गए Functions के बारे में कोई जानकारी नहीं होती है और जब तक Compiler को किसी भी नए Create किए गए User Defined Function के बारे में जानकारी नहीं होती है, तब तक हम हमारे  Program में उन नए Create किए गए Functions को Use नहीं कर सकते हैं। यदि हम ऐसा करते हैं, तो Program को Compile करते समय Compiler हमें Compile Time Error देता है। यानी हमारे Program को Compile नहीं होने देता।


इस problem से बचने के लिए ये जरूरी होता है कि हमने जो भी User Defined Function Create किया है, उसे main()Function में Use करने से पहले Compiler को इस बात का पता रहे कि main() Function में किन-किन Functions को Use किया गया है। Compiler को इस बात की जानकारी देने के लिए हम अपने Create किए गए सभी Functions का Prototype main() Function से पहले Specify करते हैं। इन Specifications को Function Declaration भी कहते हैं।



To Check a Palindrome number

To Check a Palindrome number

Question-
Who invented the palindrome in C language?

Answer- 
Sotades the obscene of Maronea (3rd century BC) is credited with inventing the palindrome.


To check a palindrome number:-




#include<stdio.h>
#include<conio.h>
void main()
{
int n, reverse=0,temp;
printf("enter a number to check if it is a palindrome or not:");
scanf("%d",&n);
temp=n;
while(temp!=0)
{
reverse=reverse*10;
reverse=reverse+temp%10;
temp=temp/10
}
if(n==reverse)
printf("%d is a palindrome",n);
else
printf("%d is not a palindrome",n);
getch();
}

Output:-
enter a number to check if it is a palindrome or not:
141
141 is a palindrome

Program factorial using recursion

Program factorial using recursion

Factorial of a number using recursion:-


#include<stdio.h>
#include<conio.h>
int recu (int x);
void main()
{
clrscr();
int n, fact;
printf ("Enter The Number:");
scanf ("%d",&n);
fact=recu(n);
printf ("%d",fact);
getch();
}
int recu (intx)
{
intf;
if(x==1)
return 1;
else
{
f=x*recu(x-1);
}
return(f);
}

Output:-
Enter The Number: 7
5040