1. CyberNepal 2. Fursad.com 3. Babbal.com 4. NepaliSite.com 5. TheNepalUsa 6. Gazzabko 7. ThikThak 8. E-paila 9. TheAustraliaNepal 10. EntertainmentNepal 11. BestCyberZone 12......
Saturday, July 14, 2012
Tuesday, July 10, 2012
Tuesday, June 26, 2012
concateneates funcation
#include<stdio.h> #include<conio.h> #include<string.h> main() { char source[]= "computer"; char target[40]= "education"; printf("\nFirst sting:%s\n", source); printf("\nSecond sting:%s\n", target); .....
compare string
#include<stdio.h> #include<conio.h> #include<string.h> main() { char string1[]= "computer"; char string2[]= "education"; char string3[]= "Nepal"; int a,b; a =.....
character c++
#include #include main() { long int ch; printf("Enter any characher="); scanf("%d",&ch); if(ch>=0 && ch<=9999) printf("The entered number is numerical"); else printf("The entered number.....
chaning upper with array
#include<stdio.h> #include<conio.h> main() { int a[10]; int i, n, large; printf("How many mumbers="); scanf("%d", &n); for (i =.....
calender C++
#include<stdio.h> main() { int i,j,c; for(i=1; i<=31;i++) { for(j = 0; j<=7; j++) { c = i+j;.....