C'de Girilen Sayının Tek/Çift Olduğunu Bulan Program

 Bu örnekte C programlama dilinde, kullanıcıdan alınan sayının tek sayımı yoksa çift sayı mı olduğunu bulan programı yazdık:Kod: https://github.com/sumeyyevarmis/c-tek-cift-sayi#include <stdio.h>void tekcift(int x){    if(x%2==0){        printf("Cift"); ...