Skip to content
Solutions24h Solutions24h
  • Home
  • Computer Tips
  • Download Project
    • Free Download Asp.Net Project
    • Free Download PHP Project
    • Free Download Android Project
    • Free Download JAVA Project
  • Prog. in C
  • Latest Blogs
  • Contact
  • .NET Project
  • PHP Project
  • Software
  • Android
  • Python
  • Java
  • facebook.com
  • twitter.com
  • t.me
  • instagram.com
  • youtube.com
Subscribe

Prog. in C

  • Home
  • Prog. in C
  • Page 2
Write a c program to print numbers using recursion.
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
Write a c program to print 1 to n numbers using recursion.
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
Write a function in c program that prints Namaste if user is Indian and Bonjour if the user is French.
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
Write a C Program to find whether the entered number is even, odd.
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

Posts pagination

Previous page 1 2 3 4 … 8 Next page
Archives
Copyright 2025 — Solutions24h. All rights reserved
Scroll to Top