Recent Posts From All Categories

Showing posts with label C Language. Show all posts
Showing posts with label C Language. Show all posts

Area of Ellipse using function: C Programming

Code goes like this : /* Program for calculating area of ellipse */ #include<stdio.h> #define PI 3.1415 float area_of_ellipse(float a...
Read More

Swap Values Without Using 3rd Variables : C Programming

For the above program, code goes like this : /* Swapping values without using 3rd Variable */ #include<stdio.h> main() {     int ...
Read More

Swapping Values using 3rd Variable : C Programming

Code goes like this : /* Swapping values without using 3rd Variable */ #include<stdio.h> main() {     int a,b;     printf(...
Read More