SlideShare a Scribd company logo
Submitted By
UMESH TAGLANI
BCA 1st Year
Dezyne E’ cole College
106/10, Civil Lines, Ajmer
Tel: 0145-2624679
www.dezyneecole.com
2014-2015
Acknowledgement
This application on “C Language” was developed at Dezyne E’cole
College.
During the making of this project I have learnt a lot and I thank my mentor
Mr. Tarun Sharma for helping us during the making of project.
With due Regards,
Umesh Taglani
BCA 1st Year
Synopsys :-
This project (Table Printing) is made by me at
Dezyne E’cole College.
Table Printing prints the table when user
input any table number.
Umesh Taglani
Bachelor of Computer
Application
1st year
Dezyne E’cole College
www.dezyneecole.com
Table Printing
C Programming
Umesh Taglani
Bachelor of Computer
Application
1st year
Dezyne E’cole College
www.dezyneecole.com
#include<stdio.h>
#include<conio.h>
#include<dos.h>
void main()
{
int a=0,input=11;
int n=0,tmp=0,m=0,i;
char ch;
clrscr();
textcolor(12);
gotoxy(25,8);
cprintf("=======================");
gotoxy(25,9);
cprintf("||");
gotoxy(25,10);
cprintf("||");
gotoxy(25,11);
cprintf("||");
gotoxy(25,12);
cprintf("||");
gotoxy(25,13);
cprintf("||");
gotoxy(25,14);
cprintf("||");
gotoxy(55,9);
cprintf(" ||");
gotoxy(55,10);
cprintf(" ||");
gotoxy(55,11);
cprintf(" ||");
gotoxy(55,12);
cprintf(" ||");
gotoxy(55,13);
cprintf(" ||");
Source Code
Table Printing
C Programming
Umesh Taglani
Bachelor of Computer
Application
1st year
Dezyne E’cole College
www.dezyneecole.com
gotoxy(55,14);
cprintf(" ||");
gotoxy(25,15);
cprintf("=============================
===========");
gotoxy(27,9);
printf(" Table Printing n");
gotoxy(27,12);
printf(" Enter num:: n");
gotoxy(41,12);
scanf("%d",&a);
if(a!=0)
{
clrscr();
textcolor(12);
gotoxy(25,8);
cprintf("=============================
===========");
gotoxy(25,9);
cprintf("||");
gotoxy(25,10);
cprintf("||");
gotoxy(25,11);
cprintf("||");
gotoxy(25,12);
cprintf("||");
gotoxy(25,13);
cprintf("||");
gotoxy(25,14);
cprintf("||");
gotoxy(25,15);
cprintf("||");
gotoxy(25,16);
cprintf("||");
gotoxy(25,17);
cprintf("||");
Table Printing
C Programming
Umesh Taglani
Bachelor of Computer
Application
1st year
Dezyne E’cole College
www.dezyneecole.com
gotoxy(25,18);
cprintf("||");
gotoxy(25,19);
cprintf("||");
gotoxy(25,20);
cprintf("||");
gotoxy(25,21);
cprintf("||");
gotoxy(55,9);
cprintf(" ||");
gotoxy(55,10);
cprintf(" ||");
gotoxy(55,11);
cprintf(" ||");
gotoxy(55,12);
cprintf(" ||");
gotoxy(55,13);
cprintf(" ||");
gotoxy(55,14);
cprintf(" ||");
gotoxy(55,15);
cprintf(" ||");
gotoxy(55,16);
cprintf(" ||");
gotoxy(55,17);
cprintf(" ||");
gotoxy(55,18);
cprintf(" ||");
gotoxy(55,19);
cprintf(" ||");
gotoxy(55,20);
cprintf(" ||");
gotoxy(55,21);
cprintf(" ||");
gotoxy(25,22);
cprintf("==============================
==========");
Table Printing
C Programming
Umesh Taglani
Bachelor of Computer
Application
1st year
Dezyne E’cole College
www.dezyneecole.com
textcolor(15);
gotoxy(27,9);
cprintf(" Table Printing n");
for(i=1;i<=10;i++)
{
n=i*a;
gotoxy(34,input);
input++;
cprintf("%d * %d = %dnnn",a,i,n);
}
}
textcolor(10);
gotoxy(34,40);
cprintf("Do you want to Continue(Y/N)");
if(getch()=='y')
{
main();
}
else
{
exit(0);
}
getch();
}
Table Printing
C Programming
Synopsys :-
This project (Pallindrome Number) is made by
me at Dezyne E’cole College.
When user input any reverse number it will
tell it is pallindrome or not.
Umesh Taglani
Bachelor of Computer
Application
1st year
Dezyne E’cole College
www.dezyneecole.com
Palindrome Number
C Programming
Umesh Taglani
Bachelor of Computer
Application
1st year
Dezyne E’cole College
www.dezyneecole.com
Palindrome Number
C Programming
Umesh Taglani
Bachelor of Computer
Application
1st year
Dezyne E’cole College
www.dezyneecole.com
Source Code
#include<stdio.h>
#include<conio.h>
void main()
{
int n=0,m=0,r=0,tmp=0;
clrscr();
textcolor(12);
gotoxy(25,8);
cprintf("==============================
==========");
gotoxy(25,9);
cprintf("||");
gotoxy(25,10);
cprintf("||");
gotoxy(25,11);
cprintf("||");
gotoxy(25,12);
cprintf("||");
gotoxy(25,13);
cprintf("||");
gotoxy(25,14);
cprintf("||");
gotoxy(55,9);
cprintf(" ||");
gotoxy(55,10);
cprintf(" ||");
gotoxy(55,11);
cprintf(" ||");
gotoxy(55,12);
cprintf(" ||");
gotoxy(55,13);
cprintf(" ||");
gotoxy(55,14);
cprintf(" ||");
gotoxy(25,15);
cprintf("==============================
==========");
Palindrome Number
C Programming
Umesh Taglani
Bachelor of Computer
Application
1st year
Dezyne E’cole College
www.dezyneecole.com
gotoxy(27,10);
cprintf(" Check Num is Palandrom or
Not");
gotoxy(27,12);
textcolor(15);
cprintf(" Enter Num:-");
cscanf("%d",&n);
tmp=n;
while(n>0)
{
m=n%10;
r=r*10+m;
n=n/10;
}
if(tmp==r)
{ clrscr();
gotoxy(25,8);
cprintf("============================
============");
gotoxy(25,9);
cprintf("||");
gotoxy(25,10);
cprintf("||");
gotoxy(25,11);
cprintf("||");
gotoxy(25,12);
cprintf("||");
gotoxy(25,13);
cprintf("||");
gotoxy(25,14);
cprintf("||");
gotoxy(55,9);
cprintf(" ||");
gotoxy(55,10);
cprintf(" ||");
gotoxy(55,11);
cprintf(" ||");
Palindrome Number
C Programming
Palindrome Number
Umesh Taglani
Bachelor of Computer
Application
1st year
Dezyne E’cole College
www.dezyneecole.com
gotoxy(55,12);
cprintf(" ||");
gotoxy(55,13);
cprintf(" ||");
gotoxy(55,14);
cprintf(" ||");
gotoxy(25,15);
cprintf("==============");
gotoxy(27,10);
cprintf(" Entered Num:-
%d",tmp);
gotoxy(27,12);
textcolor(15);
cprintf(" Number is
Palandrom");
getch();
}
else
{ clrscr();
gotoxy(25,8);
cprintf("=============");
gotoxy(25,9);
cprintf("||");
gotoxy(25,10);
cprintf("||");
gotoxy(25,11);
cprintf("||");
gotoxy(25,12);
cprintf("||");
gotoxy(25,13);
cprintf("||");
gotoxy(25,14);
cprintf("||");
C Programming
Palindrome Number
Umesh Taglani
Bachelor of Computer
Application
1st year
Dezyne E’cole College
www.dezyneecole.com
gotoxy(55,9);
cprintf(" ||");
gotoxy(55,10);
cprintf(" ||");
gotoxy(55,11);
cprintf(" ||");
gotoxy(55,12);
cprintf(" ||");
gotoxy(55,13);
cprintf(" ||");
gotoxy(55,14);
cprintf(" ||");
gotoxy(25,15);
cprintf("=============================
===========");
gotoxy(27,10);
cprintf(" Entered Num:-
%d",tmp);
gotoxy(27,12);
textcolor(15);
cprintf(" Number is not
Palandrom");
getch();
}
getch();
}
C Programming
Umesh Taglani
Bachelor of Computer
Application
1st year
Dezyne E’cole College
www.dezyneecole.com
Thank You

More Related Content

Viewers also liked

Presentacion de blog
Presentacion de blogPresentacion de blog
Presentacion de blog
lobokiler
 
Partikel dasar atom tugas v
Partikel dasar atom tugas vPartikel dasar atom tugas v
Partikel dasar atom tugas v
yahyakurnia23
 
Presentacion del servico de computadores e internet
Presentacion del servico de computadores e internetPresentacion del servico de computadores e internet
Presentacion del servico de computadores e internet
miryamcita2012
 
Hgte virtual-vendor
Hgte virtual-vendorHgte virtual-vendor
Hgte virtual-vendor
Mai Anh Hoang
 
Batubara di indonesia
Batubara di indonesiaBatubara di indonesia
Batubara di indonesia
Iksan Joe
 
Trabajo de habilidades comunicativas.docx
Trabajo de habilidades comunicativas.docxTrabajo de habilidades comunicativas.docx
Trabajo de habilidades comunicativas.docx
fidhers
 
Materi dan perubahan materi i tugas i
Materi dan perubahan materi i tugas iMateri dan perubahan materi i tugas i
Materi dan perubahan materi i tugas i
yahyakurnia23
 
CAMPAÑA DE MEDIOS ON LINE
CAMPAÑA DE MEDIOS ON LINECAMPAÑA DE MEDIOS ON LINE
CAMPAÑA DE MEDIOS ON LINE
LEONARDO Amaraldo DELGADO Azaña
 
Panduan praktis pelaksanaan studi ehra final
Panduan praktis pelaksanaan studi ehra finalPanduan praktis pelaksanaan studi ehra final
Panduan praktis pelaksanaan studi ehra final
Made Wahyu
 
Skyscrapers
Skyscrapers Skyscrapers
Skyscrapers
kartik acharya
 
Analisis lingkungan internal
Analisis lingkungan internalAnalisis lingkungan internal
Analisis lingkungan internal
Faridatul Fitriyah
 

Viewers also liked (11)

Presentacion de blog
Presentacion de blogPresentacion de blog
Presentacion de blog
 
Partikel dasar atom tugas v
Partikel dasar atom tugas vPartikel dasar atom tugas v
Partikel dasar atom tugas v
 
Presentacion del servico de computadores e internet
Presentacion del servico de computadores e internetPresentacion del servico de computadores e internet
Presentacion del servico de computadores e internet
 
Hgte virtual-vendor
Hgte virtual-vendorHgte virtual-vendor
Hgte virtual-vendor
 
Batubara di indonesia
Batubara di indonesiaBatubara di indonesia
Batubara di indonesia
 
Trabajo de habilidades comunicativas.docx
Trabajo de habilidades comunicativas.docxTrabajo de habilidades comunicativas.docx
Trabajo de habilidades comunicativas.docx
 
Materi dan perubahan materi i tugas i
Materi dan perubahan materi i tugas iMateri dan perubahan materi i tugas i
Materi dan perubahan materi i tugas i
 
CAMPAÑA DE MEDIOS ON LINE
CAMPAÑA DE MEDIOS ON LINECAMPAÑA DE MEDIOS ON LINE
CAMPAÑA DE MEDIOS ON LINE
 
Panduan praktis pelaksanaan studi ehra final
Panduan praktis pelaksanaan studi ehra finalPanduan praktis pelaksanaan studi ehra final
Panduan praktis pelaksanaan studi ehra final
 
Skyscrapers
Skyscrapers Skyscrapers
Skyscrapers
 
Analisis lingkungan internal
Analisis lingkungan internalAnalisis lingkungan internal
Analisis lingkungan internal
 

Similar to Umesh Taglani,Project on C language,Final Year BCA ,Dezyne E'cole College

Harendra Singh,BCA Third Year
Harendra Singh,BCA Third YearHarendra Singh,BCA Third Year
Harendra Singh,BCA Third Year
dezyneecole
 
Dinesh Narayan ,Project on C++,Final year BCA ,Dezyne E'cole College
Dinesh Narayan ,Project on C++,Final year BCA ,Dezyne E'cole CollegeDinesh Narayan ,Project on C++,Final year BCA ,Dezyne E'cole College
Dinesh Narayan ,Project on C++,Final year BCA ,Dezyne E'cole College
dezyneecole
 
Ram Prasad , BCA Third Year
Ram Prasad , BCA Third YearRam Prasad , BCA Third Year
Ram Prasad , BCA Third Year
Dezyneecole
 
Amit Kumar Yadav , BCA Third Year
Amit Kumar Yadav ,  BCA Third YearAmit Kumar Yadav ,  BCA Third Year
Amit Kumar Yadav , BCA Third Year
Dezyneecole
 
Deepak Soni ,BCA Third Year
Deepak Soni ,BCA Third YearDeepak Soni ,BCA Third Year
Deepak Soni ,BCA Third Year
Dezyneecole
 
Pooja Sharma , BCA Third Year
Pooja Sharma , BCA Third YearPooja Sharma , BCA Third Year
Pooja Sharma , BCA Third Year
Dezyneecole
 
Deepika Mittal , BCA Third Year
Deepika Mittal , BCA Third YearDeepika Mittal , BCA Third Year
Deepika Mittal , BCA Third Year
dezyneecole
 
Akshay Sharma , BCA Third Year
Akshay Sharma , BCA Third YearAkshay Sharma , BCA Third Year
Akshay Sharma , BCA Third Year
Dezyneecole
 
Shivani Chouhan , BCA Third Year
Shivani Chouhan , BCA Third YearShivani Chouhan , BCA Third Year
Shivani Chouhan , BCA Third Year
Dezyneecole
 
Pooja Sharma , BCA Third Year
Pooja Sharma , BCA Third YearPooja Sharma , BCA Third Year
Pooja Sharma , BCA Third Year
Dezyneecole
 
Vinita Vaishnav , BCA Third Year
Vinita Vaishnav , BCA Third YearVinita Vaishnav , BCA Third Year
Vinita Vaishnav , BCA Third Year
Dezyneecole
 
Sachin Foujdar , BCA Third Year
Sachin Foujdar , BCA Third YearSachin Foujdar , BCA Third Year
Sachin Foujdar , BCA Third Year
Dezyneecole
 
Hardik Jadam , BCA Third Year
Hardik Jadam , BCA Third YearHardik Jadam , BCA Third Year
Hardik Jadam , BCA Third Year
Dezyneecole
 
Akshay Sharma , BCA Third Year
Akshay Sharma , BCA Third YearAkshay Sharma , BCA Third Year
Akshay Sharma , BCA Third Year
Dezyneecole
 
Rahul Singodiya, BCA -3 Year
Rahul Singodiya, BCA -3 YearRahul Singodiya, BCA -3 Year
Rahul Singodiya, BCA -3 Year
dezyneecole
 
Heena Tejwani Project on Java ,Final Year BCA ,Dezyne E'cole College
Heena Tejwani Project on Java ,Final Year BCA ,Dezyne E'cole CollegeHeena Tejwani Project on Java ,Final Year BCA ,Dezyne E'cole College
Heena Tejwani Project on Java ,Final Year BCA ,Dezyne E'cole College
dezyneecole
 
Shikh Mohammad Usman Haidar , BCA Third Year
Shikh Mohammad Usman Haidar , BCA Third YearShikh Mohammad Usman Haidar , BCA Third Year
Shikh Mohammad Usman Haidar , BCA Third Year
Dezyneecole
 
computer science project
computer science projectcomputer science project
computer science project
Roshan Bastia
 
Iram naaz khan_studentmanagementpdf
Iram naaz khan_studentmanagementpdfIram naaz khan_studentmanagementpdf
Iram naaz khan_studentmanagementpdf
Mohnish Tak
 
Sachin Foujdar , BCA Third Year
Sachin Foujdar , BCA Third YearSachin Foujdar , BCA Third Year
Sachin Foujdar , BCA Third Year
Dezyneecole
 

Similar to Umesh Taglani,Project on C language,Final Year BCA ,Dezyne E'cole College (20)

Harendra Singh,BCA Third Year
Harendra Singh,BCA Third YearHarendra Singh,BCA Third Year
Harendra Singh,BCA Third Year
 
Dinesh Narayan ,Project on C++,Final year BCA ,Dezyne E'cole College
Dinesh Narayan ,Project on C++,Final year BCA ,Dezyne E'cole CollegeDinesh Narayan ,Project on C++,Final year BCA ,Dezyne E'cole College
Dinesh Narayan ,Project on C++,Final year BCA ,Dezyne E'cole College
 
Ram Prasad , BCA Third Year
Ram Prasad , BCA Third YearRam Prasad , BCA Third Year
Ram Prasad , BCA Third Year
 
Amit Kumar Yadav , BCA Third Year
Amit Kumar Yadav ,  BCA Third YearAmit Kumar Yadav ,  BCA Third Year
Amit Kumar Yadav , BCA Third Year
 
Deepak Soni ,BCA Third Year
Deepak Soni ,BCA Third YearDeepak Soni ,BCA Third Year
Deepak Soni ,BCA Third Year
 
Pooja Sharma , BCA Third Year
Pooja Sharma , BCA Third YearPooja Sharma , BCA Third Year
Pooja Sharma , BCA Third Year
 
Deepika Mittal , BCA Third Year
Deepika Mittal , BCA Third YearDeepika Mittal , BCA Third Year
Deepika Mittal , BCA Third Year
 
Akshay Sharma , BCA Third Year
Akshay Sharma , BCA Third YearAkshay Sharma , BCA Third Year
Akshay Sharma , BCA Third Year
 
Shivani Chouhan , BCA Third Year
Shivani Chouhan , BCA Third YearShivani Chouhan , BCA Third Year
Shivani Chouhan , BCA Third Year
 
Pooja Sharma , BCA Third Year
Pooja Sharma , BCA Third YearPooja Sharma , BCA Third Year
Pooja Sharma , BCA Third Year
 
Vinita Vaishnav , BCA Third Year
Vinita Vaishnav , BCA Third YearVinita Vaishnav , BCA Third Year
Vinita Vaishnav , BCA Third Year
 
Sachin Foujdar , BCA Third Year
Sachin Foujdar , BCA Third YearSachin Foujdar , BCA Third Year
Sachin Foujdar , BCA Third Year
 
Hardik Jadam , BCA Third Year
Hardik Jadam , BCA Third YearHardik Jadam , BCA Third Year
Hardik Jadam , BCA Third Year
 
Akshay Sharma , BCA Third Year
Akshay Sharma , BCA Third YearAkshay Sharma , BCA Third Year
Akshay Sharma , BCA Third Year
 
Rahul Singodiya, BCA -3 Year
Rahul Singodiya, BCA -3 YearRahul Singodiya, BCA -3 Year
Rahul Singodiya, BCA -3 Year
 
Heena Tejwani Project on Java ,Final Year BCA ,Dezyne E'cole College
Heena Tejwani Project on Java ,Final Year BCA ,Dezyne E'cole CollegeHeena Tejwani Project on Java ,Final Year BCA ,Dezyne E'cole College
Heena Tejwani Project on Java ,Final Year BCA ,Dezyne E'cole College
 
Shikh Mohammad Usman Haidar , BCA Third Year
Shikh Mohammad Usman Haidar , BCA Third YearShikh Mohammad Usman Haidar , BCA Third Year
Shikh Mohammad Usman Haidar , BCA Third Year
 
computer science project
computer science projectcomputer science project
computer science project
 
Iram naaz khan_studentmanagementpdf
Iram naaz khan_studentmanagementpdfIram naaz khan_studentmanagementpdf
Iram naaz khan_studentmanagementpdf
 
Sachin Foujdar , BCA Third Year
Sachin Foujdar , BCA Third YearSachin Foujdar , BCA Third Year
Sachin Foujdar , BCA Third Year
 

More from dezyneecole

Gracika Benjamin , Diploma Fashion Design Second Year
Gracika Benjamin , Diploma Fashion Design Second YearGracika Benjamin , Diploma Fashion Design Second Year
Gracika Benjamin , Diploma Fashion Design Second Year
dezyneecole
 
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year
Sheikh Anjum Firdoush , Diploma Fashion Design Second YearSheikh Anjum Firdoush , Diploma Fashion Design Second Year
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year
dezyneecole
 
Harsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second YearHarsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second Year
dezyneecole
 
Harsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second YearHarsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second Year
dezyneecole
 
Harsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second YearHarsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second Year
dezyneecole
 
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year
Sheikh Anjum Firdoush , Diploma Fashion Design Second YearSheikh Anjum Firdoush , Diploma Fashion Design Second Year
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year
dezyneecole
 
Sushmita Bhati, Diploma Fashion Design Second Year
Sushmita Bhati, Diploma Fashion Design Second YearSushmita Bhati, Diploma Fashion Design Second Year
Sushmita Bhati, Diploma Fashion Design Second Year
dezyneecole
 
Sushmita Bhati, Diploma Fashion Design Second Year
Sushmita Bhati, Diploma Fashion Design Second YearSushmita Bhati, Diploma Fashion Design Second Year
Sushmita Bhati, Diploma Fashion Design Second Year
dezyneecole
 
Sushmita Bhati, Diploma Fashion Design Second Year, (How to Design for Fashio...
Sushmita Bhati, Diploma Fashion Design Second Year, (How to Design for Fashio...Sushmita Bhati, Diploma Fashion Design Second Year, (How to Design for Fashio...
Sushmita Bhati, Diploma Fashion Design Second Year, (How to Design for Fashio...
dezyneecole
 
Somya Jain, Diploma Fashion Design Second Year, (How to Design for Fashion In...
Somya Jain, Diploma Fashion Design Second Year, (How to Design for Fashion In...Somya Jain, Diploma Fashion Design Second Year, (How to Design for Fashion In...
Somya Jain, Diploma Fashion Design Second Year, (How to Design for Fashion In...
dezyneecole
 
Gitesh Chhatwani , BCA -3 Year
Gitesh Chhatwani , BCA -3 YearGitesh Chhatwani , BCA -3 Year
Gitesh Chhatwani , BCA -3 Year
dezyneecole
 
Anurag Yadav , B.Voc Interior Design 1st Year ( Residential Portfolio)
Anurag Yadav , B.Voc Interior Design 1st Year ( Residential Portfolio)Anurag Yadav , B.Voc Interior Design 1st Year ( Residential Portfolio)
Anurag Yadav , B.Voc Interior Design 1st Year ( Residential Portfolio)
dezyneecole
 
Namita Bakoliya, Diploma Fashion Design First Year, (Corel Draw Project)
Namita Bakoliya, Diploma Fashion Design First Year, (Corel Draw Project)Namita Bakoliya, Diploma Fashion Design First Year, (Corel Draw Project)
Namita Bakoliya, Diploma Fashion Design First Year, (Corel Draw Project)
dezyneecole
 
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Pattern Engineer...
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Pattern Engineer...Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Pattern Engineer...
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Pattern Engineer...
dezyneecole
 
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Draping Project)
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Draping Project)Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Draping Project)
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Draping Project)
dezyneecole
 
Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)
Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)
Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)
dezyneecole
 
Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)
Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)
Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)
dezyneecole
 
Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...
Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...
Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...
dezyneecole
 
Dimple Mordani, Diploma Fashion Design First Year, (Design Basics Project)
Dimple Mordani, Diploma Fashion Design First Year, (Design Basics Project)Dimple Mordani, Diploma Fashion Design First Year, (Design Basics Project)
Dimple Mordani, Diploma Fashion Design First Year, (Design Basics Project)
dezyneecole
 
Dimple Mordani, Diploma Fashion Design First Year, (Corel Draw Project)
Dimple Mordani, Diploma Fashion Design First Year, (Corel Draw Project)Dimple Mordani, Diploma Fashion Design First Year, (Corel Draw Project)
Dimple Mordani, Diploma Fashion Design First Year, (Corel Draw Project)
dezyneecole
 

More from dezyneecole (20)

Gracika Benjamin , Diploma Fashion Design Second Year
Gracika Benjamin , Diploma Fashion Design Second YearGracika Benjamin , Diploma Fashion Design Second Year
Gracika Benjamin , Diploma Fashion Design Second Year
 
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year
Sheikh Anjum Firdoush , Diploma Fashion Design Second YearSheikh Anjum Firdoush , Diploma Fashion Design Second Year
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year
 
Harsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second YearHarsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second Year
 
Harsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second YearHarsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second Year
 
Harsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second YearHarsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second Year
 
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year
Sheikh Anjum Firdoush , Diploma Fashion Design Second YearSheikh Anjum Firdoush , Diploma Fashion Design Second Year
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year
 
Sushmita Bhati, Diploma Fashion Design Second Year
Sushmita Bhati, Diploma Fashion Design Second YearSushmita Bhati, Diploma Fashion Design Second Year
Sushmita Bhati, Diploma Fashion Design Second Year
 
Sushmita Bhati, Diploma Fashion Design Second Year
Sushmita Bhati, Diploma Fashion Design Second YearSushmita Bhati, Diploma Fashion Design Second Year
Sushmita Bhati, Diploma Fashion Design Second Year
 
Sushmita Bhati, Diploma Fashion Design Second Year, (How to Design for Fashio...
Sushmita Bhati, Diploma Fashion Design Second Year, (How to Design for Fashio...Sushmita Bhati, Diploma Fashion Design Second Year, (How to Design for Fashio...
Sushmita Bhati, Diploma Fashion Design Second Year, (How to Design for Fashio...
 
Somya Jain, Diploma Fashion Design Second Year, (How to Design for Fashion In...
Somya Jain, Diploma Fashion Design Second Year, (How to Design for Fashion In...Somya Jain, Diploma Fashion Design Second Year, (How to Design for Fashion In...
Somya Jain, Diploma Fashion Design Second Year, (How to Design for Fashion In...
 
Gitesh Chhatwani , BCA -3 Year
Gitesh Chhatwani , BCA -3 YearGitesh Chhatwani , BCA -3 Year
Gitesh Chhatwani , BCA -3 Year
 
Anurag Yadav , B.Voc Interior Design 1st Year ( Residential Portfolio)
Anurag Yadav , B.Voc Interior Design 1st Year ( Residential Portfolio)Anurag Yadav , B.Voc Interior Design 1st Year ( Residential Portfolio)
Anurag Yadav , B.Voc Interior Design 1st Year ( Residential Portfolio)
 
Namita Bakoliya, Diploma Fashion Design First Year, (Corel Draw Project)
Namita Bakoliya, Diploma Fashion Design First Year, (Corel Draw Project)Namita Bakoliya, Diploma Fashion Design First Year, (Corel Draw Project)
Namita Bakoliya, Diploma Fashion Design First Year, (Corel Draw Project)
 
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Pattern Engineer...
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Pattern Engineer...Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Pattern Engineer...
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Pattern Engineer...
 
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Draping Project)
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Draping Project)Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Draping Project)
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Draping Project)
 
Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)
Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)
Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)
 
Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)
Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)
Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)
 
Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...
Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...
Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...
 
Dimple Mordani, Diploma Fashion Design First Year, (Design Basics Project)
Dimple Mordani, Diploma Fashion Design First Year, (Design Basics Project)Dimple Mordani, Diploma Fashion Design First Year, (Design Basics Project)
Dimple Mordani, Diploma Fashion Design First Year, (Design Basics Project)
 
Dimple Mordani, Diploma Fashion Design First Year, (Corel Draw Project)
Dimple Mordani, Diploma Fashion Design First Year, (Corel Draw Project)Dimple Mordani, Diploma Fashion Design First Year, (Corel Draw Project)
Dimple Mordani, Diploma Fashion Design First Year, (Corel Draw Project)
 

Recently uploaded

A Comprehensive Guide to DeFi Development Services in 2024
A Comprehensive Guide to DeFi Development Services in 2024A Comprehensive Guide to DeFi Development Services in 2024
A Comprehensive Guide to DeFi Development Services in 2024
Intelisync
 
HCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAUHCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAU
panagenda
 
Serial Arm Control in Real Time Presentation
Serial Arm Control in Real Time PresentationSerial Arm Control in Real Time Presentation
Serial Arm Control in Real Time Presentation
tolgahangng
 
Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)
Jakub Marek
 
June Patch Tuesday
June Patch TuesdayJune Patch Tuesday
June Patch Tuesday
Ivanti
 
WeTestAthens: Postman's AI & Automation Techniques
WeTestAthens: Postman's AI & Automation TechniquesWeTestAthens: Postman's AI & Automation Techniques
WeTestAthens: Postman's AI & Automation Techniques
Postman
 
System Design Case Study: Building a Scalable E-Commerce Platform - Hiike
System Design Case Study: Building a Scalable E-Commerce Platform - HiikeSystem Design Case Study: Building a Scalable E-Commerce Platform - Hiike
System Design Case Study: Building a Scalable E-Commerce Platform - Hiike
Hiike
 
Artificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopmentArtificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopment
Octavian Nadolu
 
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Jeffrey Haguewood
 
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
saastr
 
GenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizationsGenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizations
kumardaparthi1024
 
Building Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and MilvusBuilding Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and Milvus
Zilliz
 
Nunit vs XUnit vs MSTest Differences Between These Unit Testing Frameworks.pdf
Nunit vs XUnit vs MSTest Differences Between These Unit Testing Frameworks.pdfNunit vs XUnit vs MSTest Differences Between These Unit Testing Frameworks.pdf
Nunit vs XUnit vs MSTest Differences Between These Unit Testing Frameworks.pdf
flufftailshop
 
Fueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte WebinarFueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte Webinar
Zilliz
 
Best 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERPBest 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERP
Pixlogix Infotech
 
Nordic Marketo Engage User Group_June 13_ 2024.pptx
Nordic Marketo Engage User Group_June 13_ 2024.pptxNordic Marketo Engage User Group_June 13_ 2024.pptx
Nordic Marketo Engage User Group_June 13_ 2024.pptx
MichaelKnudsen27
 
dbms calicut university B. sc Cs 4th sem.pdf
dbms  calicut university B. sc Cs 4th sem.pdfdbms  calicut university B. sc Cs 4th sem.pdf
dbms calicut university B. sc Cs 4th sem.pdf
Shinana2
 
Skybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoptionSkybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoption
Tatiana Kojar
 
Taking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdfTaking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdf
ssuserfac0301
 
Programming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup SlidesProgramming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup Slides
Zilliz
 

Recently uploaded (20)

A Comprehensive Guide to DeFi Development Services in 2024
A Comprehensive Guide to DeFi Development Services in 2024A Comprehensive Guide to DeFi Development Services in 2024
A Comprehensive Guide to DeFi Development Services in 2024
 
HCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAUHCL Notes and Domino License Cost Reduction in the World of DLAU
HCL Notes and Domino License Cost Reduction in the World of DLAU
 
Serial Arm Control in Real Time Presentation
Serial Arm Control in Real Time PresentationSerial Arm Control in Real Time Presentation
Serial Arm Control in Real Time Presentation
 
Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)Main news related to the CCS TSI 2023 (2023/1695)
Main news related to the CCS TSI 2023 (2023/1695)
 
June Patch Tuesday
June Patch TuesdayJune Patch Tuesday
June Patch Tuesday
 
WeTestAthens: Postman's AI & Automation Techniques
WeTestAthens: Postman's AI & Automation TechniquesWeTestAthens: Postman's AI & Automation Techniques
WeTestAthens: Postman's AI & Automation Techniques
 
System Design Case Study: Building a Scalable E-Commerce Platform - Hiike
System Design Case Study: Building a Scalable E-Commerce Platform - HiikeSystem Design Case Study: Building a Scalable E-Commerce Platform - Hiike
System Design Case Study: Building a Scalable E-Commerce Platform - Hiike
 
Artificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopmentArtificial Intelligence for XMLDevelopment
Artificial Intelligence for XMLDevelopment
 
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
Salesforce Integration for Bonterra Impact Management (fka Social Solutions A...
 
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
Deep Dive: AI-Powered Marketing to Get More Leads and Customers with HyperGro...
 
GenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizationsGenAI Pilot Implementation in the organizations
GenAI Pilot Implementation in the organizations
 
Building Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and MilvusBuilding Production Ready Search Pipelines with Spark and Milvus
Building Production Ready Search Pipelines with Spark and Milvus
 
Nunit vs XUnit vs MSTest Differences Between These Unit Testing Frameworks.pdf
Nunit vs XUnit vs MSTest Differences Between These Unit Testing Frameworks.pdfNunit vs XUnit vs MSTest Differences Between These Unit Testing Frameworks.pdf
Nunit vs XUnit vs MSTest Differences Between These Unit Testing Frameworks.pdf
 
Fueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte WebinarFueling AI with Great Data with Airbyte Webinar
Fueling AI with Great Data with Airbyte Webinar
 
Best 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERPBest 20 SEO Techniques To Improve Website Visibility In SERP
Best 20 SEO Techniques To Improve Website Visibility In SERP
 
Nordic Marketo Engage User Group_June 13_ 2024.pptx
Nordic Marketo Engage User Group_June 13_ 2024.pptxNordic Marketo Engage User Group_June 13_ 2024.pptx
Nordic Marketo Engage User Group_June 13_ 2024.pptx
 
dbms calicut university B. sc Cs 4th sem.pdf
dbms  calicut university B. sc Cs 4th sem.pdfdbms  calicut university B. sc Cs 4th sem.pdf
dbms calicut university B. sc Cs 4th sem.pdf
 
Skybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoptionSkybuffer SAM4U tool for SAP license adoption
Skybuffer SAM4U tool for SAP license adoption
 
Taking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdfTaking AI to the Next Level in Manufacturing.pdf
Taking AI to the Next Level in Manufacturing.pdf
 
Programming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup SlidesProgramming Foundation Models with DSPy - Meetup Slides
Programming Foundation Models with DSPy - Meetup Slides
 

Umesh Taglani,Project on C language,Final Year BCA ,Dezyne E'cole College

  • 1. Submitted By UMESH TAGLANI BCA 1st Year Dezyne E’ cole College 106/10, Civil Lines, Ajmer Tel: 0145-2624679 www.dezyneecole.com 2014-2015
  • 2. Acknowledgement This application on “C Language” was developed at Dezyne E’cole College. During the making of this project I have learnt a lot and I thank my mentor Mr. Tarun Sharma for helping us during the making of project. With due Regards, Umesh Taglani BCA 1st Year
  • 3. Synopsys :- This project (Table Printing) is made by me at Dezyne E’cole College. Table Printing prints the table when user input any table number.
  • 4. Umesh Taglani Bachelor of Computer Application 1st year Dezyne E’cole College www.dezyneecole.com Table Printing C Programming
  • 5. Umesh Taglani Bachelor of Computer Application 1st year Dezyne E’cole College www.dezyneecole.com #include<stdio.h> #include<conio.h> #include<dos.h> void main() { int a=0,input=11; int n=0,tmp=0,m=0,i; char ch; clrscr(); textcolor(12); gotoxy(25,8); cprintf("======================="); gotoxy(25,9); cprintf("||"); gotoxy(25,10); cprintf("||"); gotoxy(25,11); cprintf("||"); gotoxy(25,12); cprintf("||"); gotoxy(25,13); cprintf("||"); gotoxy(25,14); cprintf("||"); gotoxy(55,9); cprintf(" ||"); gotoxy(55,10); cprintf(" ||"); gotoxy(55,11); cprintf(" ||"); gotoxy(55,12); cprintf(" ||"); gotoxy(55,13); cprintf(" ||"); Source Code Table Printing C Programming
  • 6. Umesh Taglani Bachelor of Computer Application 1st year Dezyne E’cole College www.dezyneecole.com gotoxy(55,14); cprintf(" ||"); gotoxy(25,15); cprintf("============================= ==========="); gotoxy(27,9); printf(" Table Printing n"); gotoxy(27,12); printf(" Enter num:: n"); gotoxy(41,12); scanf("%d",&a); if(a!=0) { clrscr(); textcolor(12); gotoxy(25,8); cprintf("============================= ==========="); gotoxy(25,9); cprintf("||"); gotoxy(25,10); cprintf("||"); gotoxy(25,11); cprintf("||"); gotoxy(25,12); cprintf("||"); gotoxy(25,13); cprintf("||"); gotoxy(25,14); cprintf("||"); gotoxy(25,15); cprintf("||"); gotoxy(25,16); cprintf("||"); gotoxy(25,17); cprintf("||"); Table Printing C Programming
  • 7. Umesh Taglani Bachelor of Computer Application 1st year Dezyne E’cole College www.dezyneecole.com gotoxy(25,18); cprintf("||"); gotoxy(25,19); cprintf("||"); gotoxy(25,20); cprintf("||"); gotoxy(25,21); cprintf("||"); gotoxy(55,9); cprintf(" ||"); gotoxy(55,10); cprintf(" ||"); gotoxy(55,11); cprintf(" ||"); gotoxy(55,12); cprintf(" ||"); gotoxy(55,13); cprintf(" ||"); gotoxy(55,14); cprintf(" ||"); gotoxy(55,15); cprintf(" ||"); gotoxy(55,16); cprintf(" ||"); gotoxy(55,17); cprintf(" ||"); gotoxy(55,18); cprintf(" ||"); gotoxy(55,19); cprintf(" ||"); gotoxy(55,20); cprintf(" ||"); gotoxy(55,21); cprintf(" ||"); gotoxy(25,22); cprintf("============================== =========="); Table Printing C Programming
  • 8. Umesh Taglani Bachelor of Computer Application 1st year Dezyne E’cole College www.dezyneecole.com textcolor(15); gotoxy(27,9); cprintf(" Table Printing n"); for(i=1;i<=10;i++) { n=i*a; gotoxy(34,input); input++; cprintf("%d * %d = %dnnn",a,i,n); } } textcolor(10); gotoxy(34,40); cprintf("Do you want to Continue(Y/N)"); if(getch()=='y') { main(); } else { exit(0); } getch(); } Table Printing C Programming
  • 9. Synopsys :- This project (Pallindrome Number) is made by me at Dezyne E’cole College. When user input any reverse number it will tell it is pallindrome or not.
  • 10. Umesh Taglani Bachelor of Computer Application 1st year Dezyne E’cole College www.dezyneecole.com Palindrome Number C Programming
  • 11. Umesh Taglani Bachelor of Computer Application 1st year Dezyne E’cole College www.dezyneecole.com Palindrome Number C Programming
  • 12. Umesh Taglani Bachelor of Computer Application 1st year Dezyne E’cole College www.dezyneecole.com Source Code #include<stdio.h> #include<conio.h> void main() { int n=0,m=0,r=0,tmp=0; clrscr(); textcolor(12); gotoxy(25,8); cprintf("============================== =========="); gotoxy(25,9); cprintf("||"); gotoxy(25,10); cprintf("||"); gotoxy(25,11); cprintf("||"); gotoxy(25,12); cprintf("||"); gotoxy(25,13); cprintf("||"); gotoxy(25,14); cprintf("||"); gotoxy(55,9); cprintf(" ||"); gotoxy(55,10); cprintf(" ||"); gotoxy(55,11); cprintf(" ||"); gotoxy(55,12); cprintf(" ||"); gotoxy(55,13); cprintf(" ||"); gotoxy(55,14); cprintf(" ||"); gotoxy(25,15); cprintf("============================== =========="); Palindrome Number C Programming
  • 13. Umesh Taglani Bachelor of Computer Application 1st year Dezyne E’cole College www.dezyneecole.com gotoxy(27,10); cprintf(" Check Num is Palandrom or Not"); gotoxy(27,12); textcolor(15); cprintf(" Enter Num:-"); cscanf("%d",&n); tmp=n; while(n>0) { m=n%10; r=r*10+m; n=n/10; } if(tmp==r) { clrscr(); gotoxy(25,8); cprintf("============================ ============"); gotoxy(25,9); cprintf("||"); gotoxy(25,10); cprintf("||"); gotoxy(25,11); cprintf("||"); gotoxy(25,12); cprintf("||"); gotoxy(25,13); cprintf("||"); gotoxy(25,14); cprintf("||"); gotoxy(55,9); cprintf(" ||"); gotoxy(55,10); cprintf(" ||"); gotoxy(55,11); cprintf(" ||"); Palindrome Number C Programming
  • 14. Palindrome Number Umesh Taglani Bachelor of Computer Application 1st year Dezyne E’cole College www.dezyneecole.com gotoxy(55,12); cprintf(" ||"); gotoxy(55,13); cprintf(" ||"); gotoxy(55,14); cprintf(" ||"); gotoxy(25,15); cprintf("=============="); gotoxy(27,10); cprintf(" Entered Num:- %d",tmp); gotoxy(27,12); textcolor(15); cprintf(" Number is Palandrom"); getch(); } else { clrscr(); gotoxy(25,8); cprintf("============="); gotoxy(25,9); cprintf("||"); gotoxy(25,10); cprintf("||"); gotoxy(25,11); cprintf("||"); gotoxy(25,12); cprintf("||"); gotoxy(25,13); cprintf("||"); gotoxy(25,14); cprintf("||"); C Programming
  • 15. Palindrome Number Umesh Taglani Bachelor of Computer Application 1st year Dezyne E’cole College www.dezyneecole.com gotoxy(55,9); cprintf(" ||"); gotoxy(55,10); cprintf(" ||"); gotoxy(55,11); cprintf(" ||"); gotoxy(55,12); cprintf(" ||"); gotoxy(55,13); cprintf(" ||"); gotoxy(55,14); cprintf(" ||"); gotoxy(25,15); cprintf("============================= ==========="); gotoxy(27,10); cprintf(" Entered Num:- %d",tmp); gotoxy(27,12); textcolor(15); cprintf(" Number is not Palandrom"); getch(); } getch(); } C Programming
  • 16. Umesh Taglani Bachelor of Computer Application 1st year Dezyne E’cole College www.dezyneecole.com Thank You