SlideShare a Scribd company logo
1 of 16
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 bloglobokiler
 
Partikel dasar atom tugas v
Partikel dasar atom tugas vPartikel dasar atom tugas v
Partikel dasar atom tugas vyahyakurnia23
 
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 internetmiryamcita2012
 
Batubara di indonesia
Batubara di indonesiaBatubara di indonesia
Batubara di indonesiaIksan Joe
 
Trabajo de habilidades comunicativas.docx
Trabajo de habilidades comunicativas.docxTrabajo de habilidades comunicativas.docx
Trabajo de habilidades comunicativas.docxfidhers
 
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 iyahyakurnia23
 
Panduan praktis pelaksanaan studi ehra final
Panduan praktis pelaksanaan studi ehra finalPanduan praktis pelaksanaan studi ehra final
Panduan praktis pelaksanaan studi ehra finalMade Wahyu
 

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 C Programming Projects by Umesh Taglani

Harendra Singh,BCA Third Year
Harendra Singh,BCA Third YearHarendra Singh,BCA Third Year
Harendra Singh,BCA Third Yeardezyneecole
 
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 Collegedezyneecole
 
Ram Prasad , BCA Third Year
Ram Prasad , BCA Third YearRam Prasad , BCA Third Year
Ram Prasad , BCA Third YearDezyneecole
 
Amit Kumar Yadav , BCA Third Year
Amit Kumar Yadav ,  BCA Third YearAmit Kumar Yadav ,  BCA Third Year
Amit Kumar Yadav , BCA Third YearDezyneecole
 
Deepak Soni ,BCA Third Year
Deepak Soni ,BCA Third YearDeepak Soni ,BCA Third Year
Deepak Soni ,BCA Third YearDezyneecole
 
Pooja Sharma , BCA Third Year
Pooja Sharma , BCA Third YearPooja Sharma , BCA Third Year
Pooja Sharma , BCA Third YearDezyneecole
 
Deepika Mittal , BCA Third Year
Deepika Mittal , BCA Third YearDeepika Mittal , BCA Third Year
Deepika Mittal , BCA Third Yeardezyneecole
 
Akshay Sharma , BCA Third Year
Akshay Sharma , BCA Third YearAkshay Sharma , BCA Third Year
Akshay Sharma , BCA Third YearDezyneecole
 
Shivani Chouhan , BCA Third Year
Shivani Chouhan , BCA Third YearShivani Chouhan , BCA Third Year
Shivani Chouhan , BCA Third YearDezyneecole
 
Pooja Sharma , BCA Third Year
Pooja Sharma , BCA Third YearPooja Sharma , BCA Third Year
Pooja Sharma , BCA Third YearDezyneecole
 
Vinita Vaishnav , BCA Third Year
Vinita Vaishnav , BCA Third YearVinita Vaishnav , BCA Third Year
Vinita Vaishnav , BCA Third YearDezyneecole
 
Sachin Foujdar , BCA Third Year
Sachin Foujdar , BCA Third YearSachin Foujdar , BCA Third Year
Sachin Foujdar , BCA Third YearDezyneecole
 
Hardik Jadam , BCA Third Year
Hardik Jadam , BCA Third YearHardik Jadam , BCA Third Year
Hardik Jadam , BCA Third YearDezyneecole
 
Akshay Sharma , BCA Third Year
Akshay Sharma , BCA Third YearAkshay Sharma , BCA Third Year
Akshay Sharma , BCA Third YearDezyneecole
 
Rahul Singodiya, BCA -3 Year
Rahul Singodiya, BCA -3 YearRahul Singodiya, BCA -3 Year
Rahul Singodiya, BCA -3 Yeardezyneecole
 
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 Collegedezyneecole
 
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 YearDezyneecole
 
computer science project
computer science projectcomputer science project
computer science projectRoshan Bastia
 
Iram naaz khan_studentmanagementpdf
Iram naaz khan_studentmanagementpdfIram naaz khan_studentmanagementpdf
Iram naaz khan_studentmanagementpdfMohnish Tak
 
Sachin Foujdar , BCA Third Year
Sachin Foujdar , BCA Third YearSachin Foujdar , BCA Third Year
Sachin Foujdar , BCA Third YearDezyneecole
 

Similar to C Programming Projects by Umesh Taglani (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 Yeardezyneecole
 
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 Yeardezyneecole
 
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 Yeardezyneecole
 
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 Yeardezyneecole
 
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 Yeardezyneecole
 
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 Yeardezyneecole
 
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 Yeardezyneecole
 
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 Yeardezyneecole
 
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 Yeardezyneecole
 
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

Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilV3cube
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxKatpro Technologies
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountPuma Security, LLC
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Enterprise Knowledge
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 

Recently uploaded (20)

Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Developing An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of BrazilDeveloping An App To Navigate The Roads of Brazil
Developing An App To Navigate The Roads of Brazil
 
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptxFactors to Consider When Choosing Accounts Payable Services Providers.pptx
Factors to Consider When Choosing Accounts Payable Services Providers.pptx
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
Breaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path MountBreaking the Kubernetes Kill Chain: Host Path Mount
Breaking the Kubernetes Kill Chain: Host Path Mount
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...Driving Behavioral Change for Information Management through Data-Driven Gree...
Driving Behavioral Change for Information Management through Data-Driven Gree...
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 

C Programming Projects by Umesh Taglani

  • 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