Bài đăng

Đang hiển thị bài đăng từ Tháng 12, 2018

Swagbucks Review — Is Swagbucks a Scam or a Legit?

Hình ảnh
How I Earn From Swagbucks  click on the link and join and start earning - https://www.swagbucks.com/p/register?rb=50161109 I have to admit that when I first went on the Swagbucks page, I was a bit puzzled and a little suspicious. It mentioned things like being a "first rewards site" and a leading online search engine. Even if they were a search engine, how can one produce rewards? Yet why haven't I ever learned about them? Okay, it turns out that Swagbucks is very true too. In a nutshell, Swagbucks is a search engine much like Google or Request, except you can earn award points only by browsing the site. And the forum is currently funded by Google and Ask! Join now -  https://www.swagbucks.com/p/register?rb=50161109 Swagbucks is a fairly good spot overall. You may easily load their toolbar on your device right next to your Google Toolbar and browse the Internet from there. The findings are similar to the same issue. When you're using the Web for analysis or job reason...

Happy New Year 2019 : Quotes, Wishes, Messages

Hình ảnh
Whenever new year arrives then people become busy in texting and wishing to their friends and relatives etc. A new year is a chance to make new beginnings and letting go of old regrets.  You are here that means you want to wish someone a great happy new year 2019 and we have written the quotes on happy new year 2019 for those who want to wish to their friend, family(beloved one).   Happy New Year is the celebration of New year which is coming to the people so that they can enjoy upcoming time happily.  The night before the upcoming year is known as Happy New Year.  People express their feelings about the New Year in social media (Facebook, Whats-app, Twitter).  This time is a great time/chance to upgrade your Facebook, twitter, Instagram, Whats-app status. Social media has made very easy to wish by texting messages, posts. people have to just copy and paste for that.  So let's start Keep the smile, Leave the tear, Hold the laugh, And forget the fear, ...

A C program to create a file called emp.rec and store information about a person, in terms of his name, age and salary.

Hình ảnh
//A C program to create a file called emp.rec and store information about a person, in terms of his name, age and salary. #include <stdio.h> #include <conio.h> void main() { FILE *fptr; char name[20]; int age; float salary; fptr = fopen("emp.rec", "w"); if (fptr == NULL) { printf("File does not exists \n"); return; } printf("Enter the name \n"); scanf("%s", name); fprintf(fptr, "Name    = %s\n", name); printf("Enter the age\n"); scanf("%d", &age); fprintf(fptr, "Age     = %d\n", age); printf("Enter the salary\n"); scanf("%f", &salary); fprintf(fptr, "Salary  = %.2f\n", salary); fclose(fptr); getch(); } Output:

Earn money by liking, commenting and creating new post (similar to Facebook) / Easy way to earn money

Hình ảnh
HydeCorner allows you to earn money from your social activities get paid by liking, commenting and creating post. HydeCorner pays 80% of its revenues with its loyal members. You can withdraw your amount through Skrill or PayPal after reaching 25 dollar in  HydeCorner .  1 like = 1 points 1 dislike = 1 points 1 comment = 0 points(commenting) 1 post = 20 points 3 points = 1 like 3 points = 1 dislike 5 points = 1 comment(other's) Points are your activity reward which will automatically be converted into money. You must be 18 years old to withdraw your points earning Making spam of the service is not allowed in any case if you spam the system to earn more point your account might be suspended if they found any misuse of the service they will suspend your account without any warning. Get Paid for Driving Traffic to HydeCorner !  You are not allowed to make spam post it is strictly prohibited to publish meaningless post they may disable your account if we found spam post a...

दोश्रो नेपाल आइडलको बिजेता बने रवि ओड

Hình ảnh
पुल्चोक इञ्जिनियरिङ् कलेजको चौरमा नेपाल आइडल कोसले जित्ला भनेर नाम सुन्नेको हतारो हुनुका साथै संगीतको रौनकले चौर तात्तिएको थियो . मन जित्छ उसले , राम्रो गाउछ जसले ' भन्ने टयाग्लिनका साथ साउन २४ गते नेपाल आइडल सिजन २ को सुरुवात भएको थियो जसमा बिक्रम बराल , सुमित पाठक , अस्मिता अधिकारी र रवि ओड नेपाल आइडल सिजन २ को उत्कृष्ट ४ मा पुगेका थिए . यस नेपाल आइडल सिजन २ को बिजेता रवि ओड बन्न सफल भए . उनले पुरस्कारस्वरुप २२ लाख रुपैंया बराबरको चेक , एउटा होन्डा डब्लुआराभी क f र प्राप्त गर्नुका साथै एउटा अल्बमको सम्झौता र विश्व भ्रमण गर्ने मौका पाएका छन् . उनको विश्व भ्रमण जापानबाट सुरु हुने भनि रिमा विश्वकर्माले भनिन . उनले टाइटल जितेपछि भने – “ " यो जित मेरो मात्र होइन . मलाई साथ सहायोग , माया र भोट दिएर यो सफलता दिलाउने तपाई सबैको जित हो " . ” बधाई तथा शुभकामना प्राप्त गरिरहदा उनि बोल्न सकेका थिएनन् . आशु झारिरहेका थिए . को हुन् रवि ओड ? धनगडी अडि...

A C program to find factorial of a number using recursion

Hình ảnh
// A C program to find factorial of a number using recursion. #include<stdio.h> #include<conio.h> int factorial(int); void main(){ clrscr(); int num,fact=0; printf("Enter an integer number: "); scanf("%d",&num); fact=factorial(num); printf("Factorial of %d is = %ld",num,fact);getch(); } int factorial(int num) { if(num<=1) return 1; else return(num*factorial(n-1)); } Output:

A C program to Calculate simple interest using function

Hình ảnh
// A C program to Calculate simple interest using function #include<stdio.h> #include<conio.h>  void si();  void main(){ si();getch(); }void si() { float si,p,t,r; printf("\nEnter Prinicpal Amount:\t");scanf("%f", &p); printf("\nEnter Period of Years:\t");scanf("%f", &t); printf("\nEnter Rate of Interest:\t");scanf("%f", &r); si = (p * t * r)/100; printf("\nSimple Interest = %f\n", si);    } Output:

A C program to store the name, roll no and marks of a student

Hình ảnh
// A C program to store the neme, roll no and marks of a student #include<stdio.h> #include<conio.h> void main() { struct student { char name[50]; int roll; float marks; }s; clrscr(); printf("Enter name: "); scanf("%s", s.name); printf("Enter roll number: "); scanf("%d", &s.roll); printf("Enter marks: "); scanf("%f", &s.marks); printf("Name: "); puts(s.name); printf("Roll number: %d\n",s.roll); printf("Marks: %.1f\n", s.marks); getch(); } Output: // Smallest and Largest elements from One Dimensional Array using C program // A C program to enter and display the name using string  // A C Program of Sum of Two Matrix // A Program to calculate Sum, Product of all elements using array // A C program whether the string is palindrome or not 

A C program to value and content of variable

Hình ảnh
// A C program to value and content of variable   #include<stdio.h> #include<conio.h> void main() { clrscr(); int x=2; int *y; y=&x; printf("adress of x=%u",y); printf("value of x=%d",x); printf("value of x=%d",*y); getch(); } Output: // Smallest and Largest elements from One Dimensional Array using C program // A C program to enter and display the name using string  // A C Program of Sum of Two Matrix // A Program to calculate Sum, Product of all elements using array // A C program whether the string is palindrome or not 

A C program whether the string is palindrome or not

Hình ảnh
// A C program whether the string is palindrome or not  #include<stdio.h> #include<conio.h> #include<string.h> void main() { clrscr(); char a[100], b[100]; printf("Enter a string to check if it is a palindrome\n"); gets(a); strcpy(b,a); strrev(b); if(strcmp(a,b) == 0) printf("Entered string is a palindrome.\n"); else printf("Entered string isn't a palindrome.\n"); getch(); } Output: // Smallest and Largest elements from One Dimensional Array using C program // A C program to enter and display the name using string  // A C Program of Sum of Two Matrix // A Program to calculate Sum, Product of all elements using array

A C program to enter and display the name using string

Hình ảnh
// A C program to enter and display the name using string  #include<stdio.h> #include<conio.h> void main() { clrscr(); char name[30]; printf("Enter name: "); gets(name);    printf("Name: "); puts(name);     getch(); } Output: / / A program to display series from 1 to 50. / / A program to find the person is eligible for voting or not.   / /A C program to find largest number among 3. / / A C program to perform arithmetic operations using switch case. //  A program to print the name 10 times.  

A C Program of Sum of Two Matrix

Hình ảnh
// A C Program of Sum of Two Matrix #include<stdio.h>  #include<conio.h> void main()  {  int a[2][2],b[2][2],c[2][2],i,j;  clrscr();  printf("Enter the value of First 2 x 2 Matrix :a ");  for(i=0;i<2;i++)  {  for(j=0;j<2;j++)  {  printf("Enter the element of [%d][%d]",i,j);   scanf("%d",&a[i][j]); }  }  printf("Enter the value of Second 2 x 2 Matrix :b ");  for(i=0;i<2;i++)  {  for(j=0;j<2;j++)  { printf("Enter the element of [%d][%d]",i,j); scanf("%d",&b[i][j]);  }  }  for(i=0;i<2;i++)  {  for(j=0;j<2;j++)  {  c[i][j]=a[i][j]+b[i][j]; } } for(i=0;i<2;i++)  {  for(j=0;j<2;j++)  {  printf(" %d\t",c[i][j]);  }  printf("\n"); }  getch();  } Output: / / A C program to perform arithmetic operations using switch case. //  A program to print the name 10 times.   / / A C progr...

A Program to calculate Sum, Product of all elements using array

Hình ảnh
// A Program to calculate Sum, Product of all elements using array #include<stdio.h> #include<conio.h>  void main()  {  clrscr(); int arr[10],sum,product,i;  printf("\nEnter elements : \n");  for(i=0; i<10; i++)  { printf("Enter arr[%d] : ",i);  scanf("%d",&arr[i]);  }  sum=0; product=1; for(i=0; i<10; i++) { sum=sum+arr[i]; product=product*arr[i]; } printf("\nSum of array is     : %d"  ,sum);  printf("\nProduct of array is : %d\n",product);  getch(); }   Output: / / A program to find the person is eligible for voting or not.   / /A C program to find largest number among 3. / / A C program to perform arithmetic operations using switch case. //  A program to print the name 10 times.