Powered by Blogger.

Translate

Saturday, July 14, 2012

Nepali website list

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.
CanadaNepal

13.
NepRocks

14.
XNepali

15.
FilmyKhabar

16.
MeroCinema

17.
RadioKantipur

18.
FabNepal

19.
TheNepalUK

20.
MirmireNepal




Related Posts:
Entertainment, Info, Internet Tips, Useful Websites
·
Download Offline Version Of Google Chrome Installer

·
Mysite Cost.com : Check How Much Is Your Website Worth

·
ATM (Any Time Masti) : Is This The Future Of Nepali Film Industry ?

·
List Of Top Entertainment Websites Of Nepal

·
Nepali Movies Stole Poster !

·
अक्षय कुमार काठमाण्डूमा !

·
Yahoo Username and Password Hacked! Find Your Is Secure Or Not

·
5 Best Job Related Smartphone Apps

·
Edit Your Published Comments On Facebook

·
9 Secure Online Shopping Tips You Must Follow

·
Powerful Content Marketing Strategies That Works

·
Download Offline Version Of Skype

·
8 Best Websites To Check Your Internet Speed

·
Top Six VoIP Softwares of 2012


Download Nepali Songs

Largest collection of Nepali Mp3 songs available for download including Nepali Movie, Lok Dhohori and Korean Songs


Send Free SMS

Send free sms to worldwide,include many countries and also send free SMS via Facebook



Shyam nagarkoti








Tuesday, July 10, 2012

Nepali calendar


Shyam Nagarkoti


Powered by nepali calendar

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); 
      strcat(target, source);
      printf("\nafter string concatenation:%s\n", target);
         

     
      getchar();
      }
     

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 = strcmp(string1, string2);
      b = strcmp(string2, string3);
      printf("\nFirst sting:%d\n", a);
      printf("\nSecond sting:%d\n", b); 
    
         

     
      getchar();
      }
     

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 is character");
fflush(stdin);
getchar();
}

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 = 0; i<n; i++)
     {
         printf("Enter numbers = ");
         scanf("%d", &a[i]);
         }
         printf("\n largest no =%d", large);
         fflush(stdin);
         getchar();
         }

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;
                     printf("%d   ", c);
                     }
                    
                     printf("\n");
                     }
                     getchar();
                     }