Friday, 22 March 2013

Download PDF in All Page

Filled under:

How to Download PDF E-Book Using my Site Show Right Side bar in Newest Education and Click Download as PDF Link Then Click Download Button in Open New box. Note: Make sure you open only one page one link. Example:  http://newesteducation.blogspot.in/2013/03/bca-html-programs.html&nbs...

Posted By New18:44

Sunday, 17 March 2013

FYBCA Sem 2 C Programs

Filled under:

Advanced Programming Language of ‘C’ Program 1 //1. Write a program to check the no. is Palindrome or not using UDF. #include<stdio.h> #include<conio.h> void pali(int n); void main() { int n; clrscr(); printf("Enter Number="); scanf("%d",&n); pali(n); getch(); } void pali(int n) { int x,y,s=0,m; m=n; while(n!=0) { x=n%10; s=s*10+x; y=n/10; n=y; } if(m==s) { printf("%d is Palindrome Number",m); } else { printf("%d is Not Pelindrome Number",m); } } Output Enter Number=12 12 is Not Pelindrome...

Posted By New15:12