
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 MoreDisplay 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 MorePW: 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#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 MoreCLICK 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 MoreMORE 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 MoreHTTPS 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 MoreFactorial 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 MoreFOR LOOP #include <stdio.h> int main() { int n, i, sum = 0; printf("Enter a positive integer: "); scanf("%d",&n); for(i=1; i <= n; ++i) { sum += i; // sum …
Sum of Natural Numbers in C-Programming Read More//Even or Odd #include <stdio.h> int main() { int number; printf("Enter an integer: "); scanf("%d", &number); // True if the number is perfectly divisible by 2 if(number % 2 == …
Even or Odd in C program Read MoreCLASS 12 NOTES- COMMING SOON
CLASS 12 NOTES- COMMING SOON Read More