#beginner
Read more stories on Hashnode
Articles with this tag
SQL (Structured Query Language) is a standard language for managing and manipulating relational databases. It allows users to create, read, update,...
Wondered how a slot machine works. The glittering and sparkling lights of a slot machine, and the sounds it makes which makes you helpless and...
If you’re delving into data structures, chances are you’ve encountered the term linked list. They’re a powerful alternative to arrays, especially when...
A simple program to convert binary numbers to normal numbers in C. #include<stdio.h> int main(){ int num,binary_num,decimal_num=0,base=1,rem; ...
An array is a container object that holds a fixed number of values of a single type. Basically A collection of similar data types stored at contiguous...
Conditional Statements are one of my favorite chapter in C. Conditional statements are programming constructs that allow a program to execute a block...