Posted inProg. in C Write a c program to print numbers using recursion. #include<stdio.h> #include<conio.h> void print(int n); // function declaration void main() { int n; printf("Enter the… Posted by dipak May 27, 2024
Posted inProg. in C Write a c program to print 1 to n numbers using recursion. #include<stdio.h> #include<conio.h> void print(int x,int n); // declaration of function void main() { int n; … Posted by dipak May 27, 2024
Posted inProg. in C Write a function in c program that prints Namaste if user is Indian and Bonjour if the user is French. Here is a C program in which function is formed that prints Namaste if user is Indian and Bonjour if the user is French. #include<stdio.h> #include<conio.h> void namaste(); … Posted by dipak December 10, 2023
Posted inProg. in C Write a C Program to find whether the entered number is even, odd. Write a C Program to find whether the entered number is even, odd . #include<stdio.h> #include<conio.h> void main() { int a; … Posted by dipak December 10, 2023