Category: Function
We see lots of void in C. Lets clear why we all use this. int myFunc(void){ }…
As I am learning I didn’t find the solution yet when I was trying to make a…
code by me: #include<stdio.h> #include<math.h> int getTotalDigits(int); int isArmStrong(int,int); int getTotalDigits(int n) { int count=0; while(n>0) {…
Program to check if it is upper or lowercase if it is then print it or if…
for formula: http://www.mathsisfun.com/area.htm code: #include<stdio.h> double pi=3.1416; double britto(double r) { double area=pi*r*r; return area; } int…
Recent Comments