C Programs to Convert Binary to Octal

In this tutorial, i am going to show you how to convert binary number to Octal number in c program with the help of for loop, while loop and function. All C Programs to Convert Binary to Octal C Program to Convert Binary to Octal using While Loop #include <stdio.h> #include<math.h> int main() { int … Read more

Logical operators in C

C programming logical operators; In this tutorial, i am going to show you logical operators in c programming and how to use logical operators in c. There are three types of logical operators in C language. They are, logical AND (&&), logical OR (||) and logical NOT (!). Logical Operators in C Logical operators are used … Read more