Character Pattern in Java Character Pattern in Java import java.util.*; public class Character_Pattern { Β Β public static void main(String[] args) { […]
Read moreTag: computer applications
C program to copy contents of one file to another file
#include <stdio.h> #include <stdlib.h> // For exit() int main() { FILE *fptr1, *fptr2; char […]
Read moreProgram to concatenate twoΒ string without using strcat
#include <stdio.h> int main() { // Get the two Strings to be concatenated char str1[100] = “Good”, str2[100] = “morning”; […]
Read moreFind the day of the week you were born!
// Please enter your birthday in this // format(including spaces): // DD MM YYYY // 22 01 1997 #include <iostream> using namespace std; int […]
Read moreMicrosoft logo program
<!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <div class=”box”> <div id=”box1″></div> <div id=”hello”></div> </div> <div class=”down”> <div id=”kk”></div> <div id=”ll”> </div> </div> <br /> […]
Read moreButterfly Pattern Program
Butterfly Pattern Program Butterfly Pattern Program #include<stdio.h> int main(){ Β Β int n; Β Β scanf(“%d”,&n); Β Β for(int i=1;i<=n;i++){ Β Β Β Β […]
Read moreCharacteristics of Computers ( Part 2 ) | Computer Basics | BCA , BSc , B. Tech CS | #DDU #Computer
Characteristics of Computers ( Part 2 ) | Computer Basics | BCA , BSc , B. Tech CS | #DDU #Computer * Characteristics of […]
Read moreCharacteristics of Computers | Computer Basics | BCA , BSc , B. Tech CS | #DDU #Computer
Characteristics of Computers | Computer Basics | BCA , BSc , B. Tech CS | #DDU #Computer Characteristics of Computers : (Part 1) Computers […]
Read moreComputer Appreciation | Computer Basics | BCA , BSc , B. Tech CS | #DDU #Computer
Computer Appreciation | Computer Basics | BCA , BSc , B. Tech CS | #DDU #Computer What is Computer ? A computer is very […]
Read moreIT Tools and Applications Detailed Syllabus || BCA / B. Tech / BSc. || #DDU #computer
IT Tools and Applications Detailed Syllabus || BCA / B. Tech / BSc. || #DDU #computer IT Tools and Applications UNIT 1: Computer Basics: Computer […]
Read more
Recent Comments