Solution of Book: A Textbook of C Programming, Page :194, Q.No: 28 Marked price of different items in a electronics shop are listed as foll...
Read More
Home / C Programming
Showing posts with label C Programming. Show all posts
Showing posts with label C Programming. Show all posts
Factorial using while loop in C Programming
Code goes like this : /* Factorial calculation using While loop */ #include<stdio.h> #include<conio.h> int main() { int i,...
Read More
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
Subscribe to:
Posts
(
Atom
)