Write a program that will ask the user to give a number and then the program check if the given number is an odd or even number using pointers and display the result on the screen using C programming language.
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 I also accepting computer repair, networking and Arduino Project development at a very affordable price.
My personal website is http://www.jakerpomperada.com.
Sample Program Output
Program Listing
/* odd_even.c
Author : Jake Rodriguez Pomperada,BSCS,MAED-IT
Date : November 26, 2018 Monday 9:07 AM
Location : Bacolod City, Negros Occidental
Tool : Dev C++ Version 5.11
Website : http://www.jakerpomperada.com
Email : jakerpomperada@jakerpomperada.com and jakerpomperada@gmail.com
*/
#include<stdio.h>
int main()
{
int num=0;
int *ptr;
printf("\n\n");
printf("\tOdd and Even Number Checker");
printf("\n\n");
printf("\tEnter a Number : ");
scanf("%d",&num);
ptr = #
if (*ptr%2==0) {
printf("\n");
printf("\tThe given number %d is an EVEN number.",num);
}
else {
printf("\n");
printf("\tThe given number %d is an ODD number.",num);
}
printf("\n\n");
printf("\tEND OF PROGRAM");
printf("\n\n");
}