#c
Read more stories on Hashnode
Articles with this tag
In this following program, we will take the length and breadth and calculate the area using structures in the c language. The structure is a...
I will get to the code and please keep in mind this code is not for newbie your basics should be clear enough to understand this #include...
In this article, we will see how we can go through an array and find the numbers that are greater than 50 #include <stdio.h> void bigg(int *x); int...
So this article is for people who already know basics of C // program to find biggest number in an array using pointer #include <stdio.h> void...
In programming languages, if a program allows you to call a function inside the same function, then it is called a recursive call of the...
So here we are now we gonna use two different user-defined functions to make a program. I won't go into the basics of c. This reading is for people...