Atshai's repositories

wifi_password_decoder

This project is the python code which is executed in the PORTABLE THRONNY ( Python IDLE ) . It decodes or finds the saved WIFI passwords of the system .

Language:PythonStargazers:24Issues:0Issues:0

star-pattern

This program prompts the user to enter the number of rows they want in the star pattern. Then, it uses nested loops to print stars in a triangular pattern. The outer loop iterates over the rows, and the inner loop iterates over the columns for each row, printing a star at each position.

Language:CStargazers:16Issues:0Issues:0

HAPPY-NUMBER

A C program to check if a number is a "happy number" typically involves defining a function that repeatedly calculates the sum of the squares of the digits of the number until either the sum becomes 1 or the process loops endlessly without reaching 1. Here's a description of the steps involved:

Stargazers:15Issues:0Issues:0

reverse-matrix

In C programming, a "reverse matrix" typically refers to finding the reverse or inverse of a matrix. The inverse of a matrix � A is another matrix denoted as � − 1 A −1 such that when � A is multiplied by its inverse, the result is the identity matrix.

Stargazers:15Issues:0Issues:0

disarium-number

A Disarium number is a number defined by the sum of its digits raised to the power of their respective positions. For example, 89 is a Disarium number because 8 1 + 9 2 = 8 + 81 = 89 8 1 +9 2 =8+81=89. Here's a C program to check if a given number is a Disarium number or not:

Stargazers:14Issues:0Issues:0

palindrome

This code is a simple program written in C that checks whether a given input string is a palindrome or not. It begins by declaring a character array str of size 10 to store the input string.

Stargazers:13Issues:0Issues:0

doubly-linked-list

This C program implements a doubly linked list with functions to insert nodes at the end (`insert`), at the beginning (`insertbeg`), after a given node (`insertafter`), before a given node (`insertbefore`), and at a specific position (`insertpos`). It also includes a `display` function to print the list.

number-lock

Victor is a businessman, he usually carries his money in a briefcase. This briefcase is highly secure and it is protected with a digital number lock. The briefcase is made of proto- Adamantium, an alloyed mixture of Adamantium and Vibranium. Even a blast will not be able to break it. Only Thanos has the power of breaking it.

singly-linked-list

This C program manages a singly linked list with functions to insert nodes at the end, beginning, after, and before a specific node, and to delete nodes from the beginning, end, and a specified position. The `display` function prints the list. The `main` function demonstrates these operations.

Stargazers:12Issues:0Issues:0

magic-no

This Java program reads an integer from the user, calculates its remainder when divided by 9, and prints the remainder. If the remainder is 0, it prints 9 instead. This effectively prints the digital root of the number with special handling for multiples of 9.

Stargazers:8Issues:0Issues:0

isdigit

to check the is digit or not

Stargazers:6Issues:0Issues:0