Recent Posts From All Categories

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

Tracking the memory consumption using sizeof operator : in C

Here, we have checkedm which type of variables takes how much memory using sizeof operator in C Programming which is the special operator o...
Read More

Odd/Even Program using ternary operator in C Programming

Take a input from user and find out the number is odd/even using ternary operator. Code goes like this : /* Finding out the odd/even numb...
Read More

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