Calling a Function in Python After creating a function in Python we can call it by using the name of the functions Python followed by parenthesis […]
Read moreCategory: top/best
Loop in Python
Loop in Python In Python, loops are used to iterate over a sequence (like a list, tuple, dictionary, set, or string) or to repeat an […]
Read moreString in Python
In Python, a string is a sequence of characters enclosed in quotes. You can use single quotes (‘), double quotes (“), triple single quotes […]
Read moreTic-Tac-Toe HTML, CSS & JAVASCRIPT PROJECT
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 moreCALCULATOR 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 moreDdu entrance exam
What is the Entrance Exam for DDU Gorakhpur? The entrance exam for DDU Gorakhpur is the DDU entrance exam. The Deen Dayal Upadhyaya Entrance Exam […]
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 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 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