Here is a C program that converts a decimal number to its binary equivalent:

decimalToBinary recursively divides the number by 2 and prints the remainder.decimalToBinary to print the binary equivalent.This program successfully converts a decimal number to binary using recursion in C language.