- 1
wap in c to input a number and check whether the number is even or odd using function.
please do it
7 Réponses
0
i dont understand that why
0
thanks bro ❣️
0
thanks 😊
- 1
#include <stdio.h>
#include<conio.h>
void odd_even(int i);
int main()
{
int number;
printf("Enter an integer : ");
scanf("%d", &number);
odd_even(number);
getch();
}