How to find the substring in Python String
Find the Substring in Python In this challenge, the user enters a string and a substring. You have to print the number of times that...
Top Best Youtube Channels to learn Competitive Programming
Internet is full of learning resources to get started with Competitive programming. YouTube is the best free source to learn about Competitive programming. While some YouTube videos...
STRUCTURES In C
As we know that Array is a collection of elements of the same type, but many times we have to store the elements of the...
Functions in c
A function is itself a block of code that can solve simple or complex tasks/calculations. Functions that perform calculations on the data provided to it...
STORAGE CLASSES IN C
Every Variable in a program has a memory associated with it. Memory Requirement of Variables is different for different types of variables. In C, Memory...
How to make Python Keylogger
Keylogger is one of the most common tools in a Hacker’s toolbox. They are in fact one of the most basic tools and are quite...
Quick Sort
Quick sort is a highly efficient sorting algorithm and is based on the partitioning of an array of data into smaller arrays. A large array...
Python Program To Add Two Numbers
Want to know how to add two numbers in python then today I will show you how to create a python program to add two...
Recursion in c++
Recursion in computer science is a method where the solution to a problem depends on solutions to smaller instances of the same problem. By the...
Decision Statements
Decision making is about deciding the order of execution of statements based on certain conditions or repeat a group of statements until certain specified conditions...