Skip to content
June 14, 2025
Prajwal Rai Blog

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

Author: Prajwal Rai

Number of employees getting salary between 5000-10000 -C Program

#include<stdio.h> #include<conio.h> main() { int salary[10],i,count=0; for(i=0;i<10;i++) { printf("input salary of employee:"); scanf("%d",&salary[i]); } for(i=0;i<10;i++) { if(salary[i]>5000&&salary[i]<=10000) { count=count+1; } } printf("Number of employees getting salary between 5000-10000=%d",count); getch(); }

Number of employees getting salary between 5000-10000 -C Program Read More

ARRAY in QBASIC

Greatest among 5 numbers using Array CLS DIM num(4) PRINT “Enter any any 5 numbers” FOR j = 0 TO 4 INPUT num(j) NEXT j lrg = num(0) FOR j …

ARRAY in QBASIC Read More

Simple HTML Project

Click the link to Download Simple HTML Project.                quiz_program_html

Simple HTML Project Read More

Modular Programming in Q BASIC Examples 2

Display the factorial of input number SUB Procedure DECLARE SUB FACT (N) CLS INPUT “Enter any number”; N CALL FACT(N) END SUB FACT (N) F = 1 FOR J = …

Modular Programming in Q BASIC Examples 2 Read More

QBasic Project 3-Record Management

PW: PASSWORD DECLARE FUNCTION age! (a!) DECLARE SUB DeleteRec () DECLARE SUB SearchRec () DECLARE SUB AddRec () DECLARE SUB EditRec () DECLARE SUB DelRec () DECLARE SUB MENU () …

QBasic Project 3-Record Management Read More

C ++Program Project (Bank Management System)

#include<iostream> #include<fstream> #include<cctype> #include<iomanip> using namespace std; //*************************************************************** // CLASS USED IN PROJECT //**************************************************************** class account { int acno; char name[50]; int deposit; char type; public: void create_account(); //function to …

C ++Program Project (Bank Management System) Read More

STRING PATTERN SUB PROCEDURE

CLICK HERE TO FIND OUT NUMERIC PATTERNS USING SUB PROCEDURE CLICK HERE TO FIND OUT  NUMERIC PATTERNS IN QBASIC (WITHOUT SUB OR FUNCTION) CLICK HERE TO FIND OUT  STRING PATTERNS …

STRING PATTERN SUB PROCEDURE Read More

SUB PROCEDURE Numeric Patterns and Series

MORE PROGRAM RELATED TO SUB PROCEDURE (CLICK HERE) MORE PROGRAMS RELATED TO FUNCTIONS (CLICK HERE) MORE PROGRAMS RELATED TO NUMERIC PATTERN IN QBASIC (CLICK HERE) MORE PROGRAMS RELATED TO STRING …

SUB PROCEDURE Numeric Patterns and Series Read More

Is HTTPS Secured?

HTTPS is the secure version of HTTP, the protocol over which data is sent between the browser and the website which is connected to. ‘S’ stands for Secure that means …

Is HTTPS Secured? Read More

Factorial of Number in C-Programming

Factorial without Recursion #include <stdio.h> int main() { int n, i; unsigned long long factorial = 1; printf("Enter an integer: "); scanf("%d",&n); // show error if the user enters a …

Factorial of Number in C-Programming Read More

Posts pagination

Previous 1 … 11 12 13 … 19 Next

Recent Posts

  • Research Paper2
  • Research Paper1
  • Price list using HTML and CSS
  • Grid example in CSS
  • Flexbox example in CSS

Recent Comments

  1. Dilip Patel on About me
  2. Kshitiz Shrestha on Simple HTML Project for students of Class 8,9,10,11
  3. Ganesh on About me
  4. sabin on About me
  5. Prajwal Rai on Library Functions in QBASIC-Introduction

Archives

No archives to show.

Categories

  • Class 11
  • Class 12
  • Class 12(C-Program)
  • Fundamental
  • HTML AND CSS
  • IT
  • JavaScript
  • Modular Program
  • MY BLOG
  • Numeric Pattern
  • Others
  • Patterns in QBasic
  • PHP
  • Plus 2
  • Program Design Tools
  • QBasic
  • QBasic Projects
  • QBasic-Basics
  • Web Design
Copyright © 2025 Prajwal Rai Blog.
Maintained by Prajwal Rai