Tag: c programs
C Program to calculate AREA of rectangle
Problem Write a C Program to calculate AREA of rectangle. Solution The source code for calculating the AREA of a rectangle in C is provided below.
C Program to Find ASCII Value of a Character
This post helps to find ASCII value for a character using the C programming language. Let’s start looking at the source code.
C Program to Multiply two Floating Point Numbers
This post shows how to multiple two floating point numbers using C programming language. So let’s go through the program.
C Program #3
What is the output of the following C program? Output Compiler error: 11 8 [Error] expected ‘;’ before ‘m’ Although the C program in the above sentence appears to be syntactically correct, compilation fails. class name for the reason. The compiler must be informed that main is the name of the class since that is its name. To create an object of a class or…
C Program #1
What is the output of the following C program? Output 14 13 The output of the sizeof operator is 14, which is the size of the string including the null character. While the strlen() function returns a string that is exactly 13 characters long, excluding null characters.
C program to calculate the power using recursion
This post calculates the power using recursion by the use of C programming language.
C Program to Convert Binary Number to Octal and vice-versa
This post helps the conversion of the binary number and octal and vice-versa using the C programming language.