Area of Triangle Program in C Language
Introduction: In this article, We are going to look at the Area of Triangle Program in C Language. Most of...
Introduction: In this article, We are going to look at the Area of Triangle Program in C Language. Most of...
Tokens in C programming Language : C Tokens are smallest Individual unit of a c program or Base Unit of...
Introduction: In this article, We will look at the Leap year program in C Language. We also look at the...
Introduction: This program is for Calculating the Perimeter and Area of a Rectangle in C programming Langauge. most of us...
Program : vim welcome.c #include<stdio.h> int main() { printf(“Hello world n”); printf(“Welcome to...
Description: Find the grade of a student by reading marks or by taking Percentage. Here we are assuming greater than...
Compiling PJSIP for all architectures. Compiling PJSIP for iOS : To Specify the target platform iOS, We need to create...
Program : #include<stdio.h> int main(void) { int var; printf(“Size of int=%un”,sizeof(int)); printf(“Size of float=%un”,sizeof(float)); printf(“Size of var=%un”,sizeof(var)); printf(“Size of...
Description : To convert Centigrade to Fahrenheit, multiply by 1.8 and add 32 degrees. Algorithm: Step 1 : startStep 2...
How to add custom media codec to pjsip Hi, In this post, I will show you how to add a...
Comma ( , ) token in C : The Comma ( , ) is used as Operator and Separator in...