Tic-Tac-Toe HTML, CSS & JAVASCRIPT PROJECT Tic-Tac-Toe HTML, CSS & JAVASCRIPT PROJECT HTML CODE:- <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″ […]
Read moreCategory: Important
CALCULATOR PROJECT HTML, CSS & JAVASCRIPT
CALCULATOR PROJECT HTML, CSS & JAVASCRIPT CALCULATOR PROJECT HTML, CSS & JAVASCRIPT HTML CODE:- <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″ /> […]
Read moreSwapping of two numbers in C++
Swapping of two numbers in C++ Swapping of two numbers in C++ Swapping of two numbers : #include <iostream> using namespace std; int main() […]
Read moreAMAZON PROJECT HTML & CSS
AMAZON PROJECT HTML & CSS AMAZON PROJECT HTML & CSS HTML CODE <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> […]
Read moreCharacter Pattern in Java
Character Pattern in Java Character Pattern in Java import java.util.*; public class Character_Pattern { public static void main(String[] args) { […]
Read moreFind factorial of a number in C++
Find factorial of a number in C++ Find factorial of a number in C++ #include <iostream> using namespace std; int main() { int n; […]
Read morePATTERN PRINTING -2 in C++
PATTERN PRINTING -2 in C++ PATTERN PRINTING -2 in C++ STAR TRIANGLE #include<iostream> using namespace std; int main() { int n; cout<<“enter n : “; […]
Read morePattern Printing -1 in C++
Pattern Printing -1 in C++ Pattern Printing -1 in C++ NUMBER SQUARE #include<iostream> using namespace std; int main(){ int n; cout<<“Enter a number : “; […]
Read moreC 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 more
Recent Comments