Bài đăng

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

A C program to display the product of two numbers

Hình ảnh
/*A C program to display the product of two numbers*/ #include<stdio.h>  #include<conio.h>  void main()  { int a, b, p; clrscr(); a = 20; b =16; p= (a * b); printf(“product of  two numbers is %d”, p); getch(); } Output:

A C program to create a user defined function to display the sum of any 2 numbers

Hình ảnh
//A C program to create a user defined function to display the sum of any 2 numbers. #include<stdio.h>  #include<conio.h> int sum(int,int);  void main()  {clrscr(); int a,b,c;  printf(“\nEnter first number”); scanf("%d", &a); printf(“\nEnter second number”); scanf("%d", &b); c = sum(a, b);  printf ("sum is = %d\n", c); getch(); }int sum(int a, int b) {int c; c=a+b; return(c); } Output:

A C program to calculate and display the monthly interest from different data

Hình ảnh
/*A C language program to calculate and display the monthly interest for following Bank rates Period <6 month 5% Period 6 to 12 month 6% Above 1 year 10%*/ #include <stdio.h> #include<conio.h> void main( )  { clrscr(); float p,t,r,i; printf(“\nEnter principal amount”); scanf(“%f”,&p); printf(“\nEnter time in month”); scanf(“%f”,&t); if(t<6) r=5.0; else if(t<=12) r=6.0; else r=10.0; i=((p*t*r)/100)*12; printf(“\Monthly interest is %f”,i); getch(); } Output:

A C program to print multiplication table

Hình ảnh
// A C program to print multiplication table  #include <stdio.h> #include <conio.h> void main() { clrscr(); int n, i; printf("Enter an integer: "); scanf("%d",&n); for(i=1; i<=10; ++i) { printf("%d * %d = %d \n", n, i, n*i); } getch(); } Output:

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