Thursday, November 14, 2019

Circumference of Circle in C

A simple program is written in C to Calculate the Circumference of Circle in C.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My Facebook address is https://www.facebook.com/profile.php?...

My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/

https://www.unlimitedbooksph.com/

Thank you very much for your help and support.


Program Listing

#include<stdio.h>
int main(){ 
float radius = 0; 
float percircle;
float pi = 3.14;

printf("----------------------------------------\n\n\n");
  printf("\tCircumference of Circle");
printf("\n\n");
printf("radius of circle :");
scanf("%f",&radius);
printf("\n\n");
percircle = ( pi * 2 * radius);
printf (" Circumference = 2(3.14)(radius = %f)",radius);
printf("\n\n");
printf("The Circumference of the circle is : %.2f", percircle);
printf("\n\n");
printf("1 ::: quit: ");
printf("\n\n");
}

Calculate the RPM with HSS drills in C

A simple program is written in C to Calculate the RPM with HSS drills.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My Facebook address is https://www.facebook.com/profile.php?...

My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/

https://www.unlimitedbooksph.com/

Thank you very much for your help and support.


Program Listing

#include<stdio.h>

int main()
{
int cs = 0;
float D = 0 ;
float rpmt;
int c = 4;
int rpm;
 
printf("------------------------------------------------------------\n\n\n");
printf("Calculate the RPM with HSS drills");
printf("\n\n");
printf("cutting speed :");
scanf("%d",&cs);
printf("Diameter :");
scanf("%f", &D); 
printf("\n\n");
rpm = ( cs * c ) /D;
rpmt = ( cs * c ) /D;
    printf("Rpm = (%d x 4) / (%f)",cs,D);
    printf("\n\n");
printf("The Rpm is : %d ",rpm);
printf("\n\n");
printf("True value with 2 decimal places : %.2f",rpmt);
printf("\n\n");
printf("1 ::: quit: ");
printf("\n\n");
}

Time Rate Calculator in C

A simple program that I called time rate calculator in C programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My Facebook address is https://www.facebook.com/profile.php?...

My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/

https://www.unlimitedbooksph.com/

Thank you very much for your help and support.


Program Listing

#include<stdio.h>

int main()
{
float a = 0;
float b = 0;
float Q = 0;
printf("time rate calculator");
printf("\n\n");
printf("container volume: ");
scanf("%f",&a);
printf("\n\n");
printf("flow rate:");
scanf("%f",&b);
Q = a/b;
printf("filled a tank with %.2fm^3 volume with a flow rate of %fm^3/min in a total time rate of %.2f min",a,b,Q);
printf("\n\n");
return 0;
}


Learning Math in C

A simple program is written in C to learn multiplication in Math.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My Facebook address is https://www.facebook.com/profile.php?...

My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/

https://www.unlimitedbooksph.com/

Thank you very much for your help and support.


Program Listing

#include <stdio.h>

int main()
{
    printf("\n\n\t\tLearning Math\n\n\n");
    int n,i;

    printf("Enter an integer you need to print the table of: ");
    scanf("%d", &n);
    printf("\n\n\n");

    for(i = 1; i <= 10; i++)
    {
        printf("\n\t\t\t%d * %d   =   %d \n", n, i, n*i);
    }
    return 0;
}

Average of the numbers in C

A simple program is written in C to get the average of the given numbers by the user.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My Facebook address is https://www.facebook.com/profile.php?...

My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/

https://www.unlimitedbooksph.com/

Thank you very much for your help and support.


Program Listing

#include<stdio.h>

int main()
{
    printf("\n\n\t\tLearning Math\n\n");
printf("\tGetting the Average of the numbers\n\n\n");
    int n, i;
    float sum = 0, x;

    printf("Enter number of elements:  ");
    scanf("%d", &n);
    printf("\n\n\nEnter %d elements\n\n", n);
    for(i = 0; i < n; i++)
    {
        scanf("%f", &x);
        sum += x;
    }
    printf("\n\n\nAverage of the entered numbers is =  %f", (sum/n));
    printf("\n\n\n");
    return 0;
}




Electronic Registrar Record System in Microsoft Visual Basic 6 and MS Access

In this article, I would like to share with you the work of my close friend and fellow software engineer Sir Jonathan Mandia he wrote this Electronic Registrar Record System in  Microsoft Visual Basic 6 and MS Access.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My Facebook address is https://www.facebook.com/profile.php?...

My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/

https://www.unlimitedbooksph.com/

Thank you very much for your help and support.




Sample Program Output



School Voting System in Visual Basic 6 and MS Access

In this article, I would like to share with you the work of my close friend and fellow software engineer Sir Jonathan Mandia he wrote this Student Voting System Using Microsoft Visual Basic 6 and Microsoft Access.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My Facebook address is https://www.facebook.com/profile.php?...

My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/

https://www.unlimitedbooksph.com/

Thank you very much for your help and support.



Sample Program Output




Two Digits into Words Translator in C

A simple program that will ask the user to give two digits and translates into words using the C programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My Facebook address is https://www.facebook.com/profile.php?...

My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/

https://www.unlimitedbooksph.com/

Thank you very much for your help and support.



Sample Program Output


Program Listing

#include <stdio.h>  
 
int main()
{
    int num1=0, num2=0;
   
    printf("\n\n");
    printf("\tTwo Digits into Words Translator in C");
    printf("\n\n");
    printf("\tEnter a two-digit number: ");
    scanf("%1d%1d", &num1, &num2);
 
    printf("\tYou have entered: ");
 
  
    switch (num1)
    {
        case 1:
           
            switch (num2)
            {
                case 0:
                    printf("\tten"); 
                    return 0;
                case 1:
                    printf("\televen"); 
                    return 0;
                case 2:
                    printf("\ttwelve"); 
                    return 0;
                case 3:
                    printf("\tthirteen"); 
                    return 0;
                case 4:
                    printf("\tfourteen"); 
                    return 0;
                case 5:
                    printf("\tfifteen"); 
                    return 0;
                case 6:
                    printf("\tsixteen"); 
                    return 0;
                case 7:
                    printf("\tseventeen"); 
                    return 0;
                case 8:
                    printf("\teigthteen"); 
                    return 0;
                case 9:
                    printf("\tnineteen"); 
                    return 0;
            }
        case 2:
            printf("\ttwenty"); 
            break;
        case 3:
            printf("\tthirty"); 
            break;
        case 4:
            printf("\tforty"); 
            break;
        case 5:
            printf("\tfifty"); 
            break;
        case 6:
            printf("\tsixty"); 
            break;
        case 7:
            printf("\tseventy"); 
            break;
        case 8:
            printf("\teighty"); 
            break;
        case 9:
            printf("\tninety"); 
            break;
    }
 
   
    switch (num2)
    {
        case 1:
            printf("\t-one"); 
            break;
        case 2:
            printf("\t-two"); 
            break;
        case 3:
            printf("\t-three"); 
            break;
        case 4:
            printf("\t-four"); 
            break;
        case 5:
            printf("\t-five"); 
            break;
        case 6:
            printf("\t-six"); 
            break;
        case 7:
            printf("\t-seven"); 
            break;
        case 8:
            printf("\t-eight"); 
            break;
        case 9:
            printf("\t-nine"); 
            break;
    }
 
    printf("\n\n");
    printf("\tEnd of Program");
    printf("\n\n");
}

Odd and Even Number Checker in C

Odd and Even Number Checker in C

I wrote this program that will ask the user to give a number and then the program will check if the given number is an odd or even number using C programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My Facebook address is https://www.facebook.com/profile.php?...

My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/

https://www.unlimitedbooksph.com/

Thank you very much for your help and support.



Sample Program Output


Program Listing

odd_even.c

#include <stdio.h>

int main()
{
int a=0,check_num=0;
printf("\n\n");
printf("\tOdd and Even Number Checker in C");
printf("\n\n");
printf("\tGive a Number : ");
scanf("%d",&a);
check_num = (a % 2);
printf("\n\n");
if (check_num == 0) {
printf("\tThe given number %d is an EVEN number.",a);
} else {
printf("\tThe given number %d is an ODD number.",a);
}
printf("\n\n");
printf("\tEnd of Program");
}

String Palindrome in C

String Palindrome in C

I wrote this program that will ask the user to give a string and then the program will check if the given string is a Palindrome or Not a Palindrome. Examples of word palindrome as follows
  • Anna 
  • Civic
  • Kayak
  • Level
  • Madam
  • Mom
  • Noon
  • Racecar
  • Radar
  • Redder
  • Refer
  • Repaper
  • Rotator
  • Rotor
  • Sagas
  • Solos
  • Stats
  • Tenet
  • Wow
I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.

My telephone number at home here in Bacolod City, Negros Occidental Philippines is  +63 (034) 4335675.

Here in Bacolod City, Negros Occidental I also accepting computer repair, networking and Arduino Project development at a very affordable price.

My Facebook address is https://www.facebook.com/profile.php?...

My personal website is http://www.jakerpomperada.com

My programming website is http://www.jakerpomperada.blogspot.com

I am also a book author you can purchase my books on computer programming and information technology in the following links below.

https://www.mindshaperspublishing.com/




Sample Program Output


Program Listing

palindrome.c

#include <stdio.h>
#include <string.h>

int main()
{
char a[100], b[100];
printf("\n\n");
printf("\tString Palindrome in C ");
printf("\n\n");
printf("\tGive a String : ");
gets(a);
strcpy(b,a);
strrev(b);
printf("\n\n");
if (strcmp(a,b) == 0) {
printf("\tThe given string is a Palindrome.");
} else {
printf("\tThe given string is Not a Palindrome.");
}
printf("\n\n");
printf("\tEnd of Program");
printf("\n\n");
}



Number Palindrome in C