Skip to content
March 21, 2023

Prajwal Rai Blog

  • Home
  • MY BLOG
    • IT
    • Others
  • C-Program
  • Plus 2
    • Class 11
    • Class 12
  • QBasic
    • QBasic-Basics
    • Patterns in QBasic
    • Numeric Pattern
    • Modular Program
    • Program Design Tools
    • QBasic Projects
  • Web Design
    • HTML AND CSS
    • JavaScript
  • PHP
  • Fundamental
  • About me
Main Menu

Month: March 2021

Class 12(C-Program)

Sort Numbers in Ascending Order C program

March 28, 2021 - by Prajwal Rai - Leave a Comment

/*Ascending order SORT*/ #include <stdio.h> main() { int i, j, a, n, number[10]; printf("Enter the value of N \n"); scanf("%d", &n); printf("Enter the numbers\n"); for (i = 0; i < …

Sort Numbers in Ascending Order C program Read More
Class 12(C-Program)

Input ‘N’ numbers into array and display sum in C program

March 24, 2021 - by Prajwal Rai - Leave a Comment

/*input N and add*/ #include<stdio.h> main() { int n, sum = 0, i, array[100]; printf("Enter the number of integers you want to add="); scanf("%d", &n); printf("\n\nEnter %d integers \n\n", n); …

Input ‘N’ numbers into array and display sum in C program Read More
Class 12(C-Program)

Greatest among input ‘n’ numbers using Array in C Program

March 24, 2021 - by Prajwal Rai - Leave a Comment

/*Greatest in array*/ #include <stdio.h> int main() { int i, n; float arr[100],max; printf("Enter the number of elements (1 to 100): "); scanf("%d", &n); for (i = 0; i < …

Greatest among input ‘n’ numbers using Array in C Program Read More
Class 12(C-Program)

Numeric Patterns in C Program

March 20, 2021 - by Prajwal Rai - Leave a Comment

* * * * * * * * * * * * * * * #include<stdio.h> main() { int i,j; for(i=1;i<=5;i++) { for(j=1;j<=i;j++) { printf("* "); } printf("\n"); } } …

Numeric Patterns in C Program Read More
Class 12(C-Program)

Factorial of any Number

March 16, 2021March 4, 2023 - by Prajwal Rai - Leave a Comment

Factorial of any Number Read More

Recent Posts

  • Write a program in C to enter ā€˜N’ of data using file handling (user choice)
  • Write a program in C to copy file using file handling
  • Write a program in C to display the students of age 20-25 and store in file
  • Write a program in C using structure to enter the id and four different subjects marks of 3 students and display them in proper format along with total and percentage. (Note: Marks should be between 0 and 100)
  • Enter name and post of ‘N’ employees and display using structure in C-Program

Archives

  • March 2023
  • February 2023
  • September 2021
  • May 2021
  • April 2021
  • March 2021
  • August 2020
  • January 2020
  • December 2019
  • April 2019
  • March 2019
  • February 2019
  • January 2019
  • December 2018
  • August 2018
  • July 2018
  • June 2018
  • May 2018
  • April 2018
  • March 2018
  • October 2015
  • September 2015
Copyright © 2023 Prajwal Rai Blog.
Maintained by Prajwal Rai