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
Write a C program to print series of reverse number upto 1 using functions
Posted inProg. in C

Write a C program to print series of reverse number upto 1 using functions

#include<stdio.h> #include<conio.h> void printn(int n) {          printf("%d\n",n);             if(n!=1)            {            …
Posted by dipak May 30, 2024
Write a c program to print the series of number with skipping the desired number.
Posted inProg. in C

Write a c program to print the series of number with skipping the desired number.

#include<stdio.h> #include<conio.h> void main() {          int i ,j ,n;             clrscr();             printf("Enter the value of…
Posted by dipak May 29, 2024
Write a C program to find the maximum number from 3 numbers.
Posted inProg. in C

Write a C program to find the maximum number from 3 numbers.

#include<stdio.h> #include<conio.h> int main(); {         int a,b,c;            clrscr();            printf("Enter value of A:");          …
Posted by dipak May 28, 2024
Write a C program to print the pattern of holow rectangle.
Posted inProg. in C

Write a C program to print the pattern of holow rectangle.

#include<stdio.h> #include<conio.h> void main() {         int i,j,n,m;            clrscr();            printf("Enter no. of rows to print rectangular matrix:");  …
Posted by dipak May 28, 2024

Posts pagination

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