Procedure to do Microworkers Cheetah Forum Jobs:




Let me tell you something that if you successfully completed any of the Cheetah Forum Posting Jobs available to you in Microworkers, then you can earn approximately 0.20$ easily. But the true fact is that many newbies over Microworkers don't have an ideas of doing Cheetah Forum Jobs. Thus considering mostly for newbies, I personally have dedicated my effort to list the suitable step by step procedure below to handle Microworkers Forum Jobs:
  • Log In to Microworkers and open any of the Forum Post Jobs available in your Job Section. Now you will see a link like "http://cheetuh.com/b/prQwf8E-7deb4b6e". Again open this link available while doing Forum Job in your browser's New Tab.
  • Now you are able to view Keyword or Anchor Text, a link and a box to submit Forum Post link.
  • Open any of the best forum regarding to the Keyword in anchor text and post an article of about 30 words which describes the link contained inside "http://cheetuh.com/b/prQwf8E-7deb4b6e". While writing a post provide the link in the middle of the paragraph with that anchor text provided to you. I strongly recommend you not to put the link either at the beginning of the paragraph neither the end of the paragraph.
  •  Now "Submit the Post" and Copy the "URL Link to your Forum Post".
  • Again go to the opening browser tab of "http://cheetuh.com/b/prQwf8E-7deb4b6e" and submit the link inside the "Forum Post URL" box.
  • Congrats! Now you will receive "7-digit Conformation Code". But bear in mind that if your task is not well performed than you won't get this type of code. Now for proof you have to copy it if you get that code..
  • At last, accept that Job and Paste that "7-digit Conformation Code" inside proof box and Click "I confirm that I have completed this task"!
I hope now you all can complete the Forum Jobs available to you in Microworkers Job panel without facing any sorts of problems. Get ready to grab the opportunity to earn money through Microworkers by performing Forum Jobs. Well now for any suggestions and problems regarding Microworkers Forum Jobs leave comments. Also if you have best forums suggestions rather than above listed, please share it with our community!

A file name DATA contains a series of integer numbers. Code a program to read these numbers and then write all ‘odd’ numbers to a file to be called ODD and all ‘even’ numbers to a file called EVEN.

#include<stdio.h>
#include<STDLIB.H>
main()
{
    FILE *f1,*f2,*f3;
    char c[1];
    int x;
    f1=fopen("data.txt","r");
    f2=fopen("odd.txt","w");
    f3=fopen("even.txt","w");

    while((c[0]=getc(f1)) != EOF)
    {
        x = atoi(c);
        if(x%2==0)
            putc(c[0],f3);
        else
            putc(c[0],f2);

    }
    fclose(f1);
    fclose(f2);
    fclose(f3);
}

Write a program to calculate factorial of a given number using recursion.

#include<stdio.h>
#include<conio.h>
int factorial(int f)
{
    int fact;
    if(f==1)
        return(1);
    else
        fact=f*factorial(f-1);
    return(fact);
}
main()
{

    int n,r;
    clrscr();
    scanf("%d",&n);
    r=factorial(n);
    printf("%d",r);
    getch();
}

Write a program that will scan a character and convert all lower case characters into upper case equivalents.

#include <ctype.h>
#include <stdio.h>
#include <conio.h>

main()
{
  char c,u;

  printf("Please enter a charecter:=");
  c=getche();
  u = toupper(c);
  printf("\nThe uppercase of String= %c\n", u);
  getch();

}

Write a program that sort an array of integers.

#include<conio.h>
#include<stdio.h>              

void main()
{
    int num[20],total_element,range,i,j,temp;
    clrscr();

    printf("Total number of element ");
    scanf("%d",&total_element);

    printf("\nEnter the numbers\n");
    for(i=0;i<total_element;i++)
            scanf("%d",&num[i]);

    range=total_element-1;

    for(i=0;i<total_element-1;i++)
          for(j=0;j<range-i;j++)
                   if(num[j]>num[j+1])
            { 
                temp=num[j];
                   num[j]=num[j+1];
                   num[j+1]=temp;
            }
   
 

    printf("\nAfter Sorting\n");
    for(i=0;i<total_element;i++)
            printf("%d ",num[i]);

    getch();
}

Write a program to replace a particular word by another word in a given string.

#include<stdio.h>
#include<conio.h>
#include<string.h>
main()
{
    char a[80]={'\0'},b[20]={'\0'},c[20]={'\0'},d[20]={'\0'},e[50]={'\0'},f[50]={'\0'};
    int i,j,k=0,h;
    printf("Please Enter a String:= ");
    gets(a);

    printf("Please Enter the Serch String:= ");
    gets(b);

    printf("Please Enter the Replace String:= ");
    gets(c);

    for(i=0;i<=strlen(a);i++)
    {
        //Assuming Space , Tab and NULL as word separator
        h=0;
        if(a[i]==32 || a[i]=='\t' || a[i]=='\0')
        {
            d[k]='\0';
            if(strcmp(b,d)==0)
            {
                for(j=i;j<=strlen(a);j++)
                {
                    e[h]=a[j];
                    h++;
                }
                for(j=0;j<i-strlen(b);j++)
                    f[j]=a[j];

                strcat(f,c);
                strcat(f,e);
                strcpy(a,f);
                for(j=0;j<50;j++)
                {
                    f[j]=NULL;
                    e[j]=NULL;
                }

            }
            k=0;
        }
        else
        {
            d[k]=a[i];
            k++;
        }

     }
     puts(a);
     getch();

}

Write a program to read a line of text containing a series of words from the terminal

#include<stdio.h>
#include<conio.h>
#include<STRING.H>
main()
{
    char a[80];
    clrscr();
    int i=0;
    printf("Enter a line:- ");

    a[i]=getchar();
    while(a[i++]!='!')
    {
        a[i]=getchar();
    }

    i=0;
    printf("\n Output= ");
    while(a[i++]!='!')
    {
        putchar(a[i]);
    }

    getch();

}

Write a C program to show the Pascal’s triangle

#include<stdio.h>
#include<conio.h>
#include<MATH.h>
void main()
{
    int a,i,j,rows;
    printf("\n enter the number of rows:");
    scanf("%d",&rows);
    for(i=0;i<rows;i++)
    {
        a=pow(11,i);
        printf("%d",a);
        printf("\n");
    }
    getch();
}

Write a C program to calculate the multiplication of two matrixes.


#include
#include

int main()
{
    int a[5][5],b[5][5],c[5][5],i,j,k,sum=0,m,n,o,p;
      printf("\nEnter the row and column of first matrix");
      scanf("%d %d",&m,&n);
      printf("\nEnter the row and column of second matrix");
      scanf("%d %d",&o,&p);
      if(n!=o)
    {
              printf("Matrix mutiplication is not possible");
              printf("\nColumn of first matrix must be same as row of second matrix");
      }
      else
    {
              printf("\nEnter the First matrix->");
              for(i=0;i");
                  for(i=0;i

Write individual program to print the following Pyramids:-

a)
#include<stdio.h>
#include<conio.h>
main()
{
    int a,b,m;

    clrscr();
    scanf("%d",&m);
    printf("\n\n\n");
    for(a=1;a<=m;a++)
    {
        for(b=1;b<=a;b++)
            printf("%d ",a);
        printf("\n\n");

    }

    getch();
}

b)
#include<stdio.h>
#include<conio.h>
main()
{
    int a,b,n=40,m;

    clrscr();
    scanf("%d",&m);
    printf("\n\n\n");
    for(a=1;a<=m;a++)
    {
        for(b=1;b<=n;b++)
            printf(" ");
        for(b=1;b<=a;b++)
            printf("%d   ",a);
        printf("\n\n");
        n=n-2;
    }

    getch();
}

Write a program to calculate factorial of a given number.

#include<stdio.h>
#include<conio.h>

void main()
{
    int i,b=1,n;
    printf("enter the number:");
    scanf("%d",&n);
    for(i=1;i<=n;i++)
        b=b*i;
    printf("factorial number is:%d",b);
    getch();
}

Write a program to evaluate the series

#include<stdio.h>
#include<conio.h>
#include<math.h>
main()
{
    clrscr();
    int n,x,sum=1,a,b,p;
    printf("Please Enter the value of x:= ");
    scanf("%d",&x);
    printf("Please Enter the value of n:= ");
    scanf("%d",&n);
   
   
    for(a=1;a<=n;a++)

    {
        p=pow(x,a);
        sum=sum+p;

    }
    printf("Result= %d",sum);
    getch();
}

Write a program to print these Floyd’s triangle

#include<stdio.h>
#include<conio.h>
main()
{
    int a,b,m;

    clrscr();
    scanf("%d",&m);
    printf("\n\n\n");
    for(a=1;a<=m;a++)
    {
        for(b=1;b<=a;b++)
            if(a%2!=0)
                if(b%2!=0)
                    printf("1 ");
                else
                    printf("0 ");
             else
                if(b%2!=0)
                    printf("0 ");
                else
                    printf("1 ");
        printf("\n");

    }
    getch();
}

Write a program to print these Floyd’s triangle

#include<stdio.h>
#include<conio.h>
main()
{
    int a,b,n=1,m;

    clrscr();
    scanf("%d",&m);
    printf("\n\n\n");
    for(a=1;a<=m;a++)

    {
        for(b=1;b<=a;b++)
            printf("%d ",n++);
        printf("\n");

    }
    getch();
}

Admission to a professional course is subject to the following conditions: a. Marks in Mathematics >=60 b. Marks in Physics >=50 c. Marks in Chemistry >= 40 d. Total in all three subjects >= 200 or Total in mathematics and physics >=150 Given the marks in three subjects, write a program to process the applications to list the eligible candidates

#include<stdio.h>
#include<conio.h>
#include<math.h>
struct student
{
    int roll,p,c,m;
};

main()
{
    clrscr();
    int i;
    struct student stu[3];
    for(i=0;i<=2;i++)
    {
        printf("Please Enter the roll:= ");
        scanf("%d",&stu[i].roll);
        printf("Please Enter the marks of Mathematics:= ");
        scanf("%d",&stu[i].m);
        printf("Please Enter the value of Physics:= ");
        scanf("%d",&stu[i].p);
        printf("Please Enter the value of Chemistry:= ");
        scanf("%d",&stu[i].c);

    }

    for(i=0;i<=2;i++)
    {
        if(stu[i].m>=60 && stu[i].p>= 50 && stu[i].c>= 40 && ((stu[i].m+stu[i].p+stu[i].c>=200) || (stu[i].m+stu[i].p>=150)))
            printf("\n%d   PASS",stu[i].roll);
        else
            printf("\n%d   FAIL",stu[i].roll);
    }

    getch();
}

Write a program to evaluate the series

#include<stdio.h>
#include<conio.h>
#include<math.h>
main()
{
    clrscr();
    float n,x,a,b,p,f,sum=1;
    printf("Please Enter the value of x:= ");
    scanf("%f",&x);
    printf("Please Enter the value of n:= ");
    scanf("%f",&n);


    for(a=1;a<=n;a++)

    {
        p=pow(x,a);
        f=1;
        for(b=1;b<=a;b++)
             f=f*b;
        sum=sum+(p/f);

    }
    printf("Result= %.2f",sum);
    getch();
}

Write a program to read the values of x and y and print the results of the following expressions in one line:

#include<stdio.h>
#include<conio.h>
#include<math.h>
main()
{
    clrscr();
    float y,x;
    printf("Please Enter the value of x:= ");
    scanf("%f",&x);
    printf("Please Enter the value of y:= ");
    scanf("%f",&y);

    printf("Result= %.2f  %.2f  %.2f",(x+y)/(x-y),(x+y)/2,(x+y)*(x-y));
    getch();
}

Write individual program to print the following Pyramids:-

#include<stdio.h>
#include<conio.h>
main()
{
    int a,b,n=40,m;

    clrscr();
    scanf("%d",&m);
    printf("\n\n\n");
    for(a=1;a<=m;a++)
    {
        for(b=1;b<=n;b++)
            printf(" ");
        for(b=1;b<=a;b++)
            printf("%d ",b);
        for(b=a-1;b>=1;b--)
            printf("%d ",b);
        printf("\n");
        n=n-2;

    }
    n=n+4;
    for(a=m;a>=1;a--)
    {
        for(b=1;b<=n;b++)
            printf(" ");
        for(b=1;b<=a-1;b++)
            printf("%d ",b);
        for(b=a-2;b>=1;b--)
            printf("%d ",b);

        printf("\n");
        n=n+2;

    }
    getch();
}

Write a program to convert decimal to binary.

#include<stdio.h>
#include<conio.h>
main()
{
    int i,dec,a[20];
    clrscr();
    scanf("%d",&dec);
    i=0;
    while(dec!=0)
    {
        a[i]=dec%2;
        dec=dec/2;
        i++;
    }

    int j=i-1;
    while(j>0)
    {
        printf("%d ",a[j]);
        j--;
    }
    getch();
}

Write a program to find the largest number among three numbers.

#include<stdio.h>
#include<conio.h>
#include<math.h>
main()
{
    clrscr();
    int y,x,z;
    printf("Please Enter the value of x:= ");
    scanf("%d",&x);
    printf("Please Enter the value of y:= ");
    scanf("%d",&y);
    printf("Please Enter the value of z:= ");
    scanf("%d",&z);
    if(x>y)
        if(x>z)
            printf("%d",x);
        else
            printf("%d",z);

    else
        if(y>z)
            printf("%d",y);
        else
            printf("%d",z);
    getch();
}

Write a program to print the digits of a given numbers in reverse order.

#include<stdio.h>
#include<conio.h>
#include<string.h>
main()
{
     clrscr();
     char b[30],c[30]={'\0'};//c[30]={'\0'} It empty the array for remove the garbage value.
     int i,j,n;
     gets(b);
          i=strlen(b);
           n=i-1;
            int m=n;//the lenght of string will not be changed in run time. You change the value of n in                   loop.
               for(j=0 ; j<=m ; j++)
             {
                c[j]=b[n];
                 n--;
             }
      puts(c);
      getch();
}

Write a program which will write 10 integer numbers stored in an integer array to a data file called NUMBERFILE. The program will then close this file, and reopen it to display by reading the NUMBERFILE

#include<stdio.h>
#include<STDLIB.H>
#include<conio.h>
main()
{
    int a[10],i;
    FILE *f2;

    for(i=0;i<=9;i++)
        scanf("%d",&a[i]);

    f2=fopen("NUMBERF.txt","w");

    for(i=0;i<=9;i++)
        putw(a[i],f2);

    fclose(f2);


    f2=fopen("NUMBERF.txt","r");
    while((i=getw(f2)) != EOF)
        printf("%d  ",i);

    fclose(f2);

    getch();

}

Write a program to find the sum of the elements contained in an integer array using pointers to array.

#include<stdio.h>
#include<conio.h>
main()
{
    clrscr();
    int *p,sum=0,i;
    int x[5]={5,9,6,3,7};
    i=0;
    p=x;/*initializing with base address of x */
    printf("Element Value address of x\n\n ");
    while(i<5)
    {
        printf("x[%d]%d%u\n",i,*p,p);
        sum=sum+*p; /*accessing array element*/
        i++;
        p++;    /*incrementing pointer*/
    }
    printf("\n sum =%d\n",sum);
    getch();
}