- 
	
	
sherinangel started the topic Logical operators in c programming in the forum C Programming 2 years, 5 months ago
Logical Operator in C
Logical Operators are used to combining two or more conditions/constraints or to complement the evaluation of the original condition in consideration. The result of the operation of a logical operator is a Boolean value either true or false.For example, the logical AND represented as the ‘&&’ operator in C returns true whe…[Read more]
 - 
	
	
sherinangel started the topic Relational operator in c programming in the forum C Programming 2 years, 5 months ago
Relational Operators in C
These are used for the comparison of the values of two operands. For example, checking if one operand is equal to the other operand or not, whether an operand is greater than the other operand or not, etc. Some of the relational operators are (==, >= , <= )(See this article for more reference).int a = 3;
int b =…[Read more] - 
	
	
sherinangel started the topic Airthmetic operator in c programming in the forum C Programming 2 years, 5 months ago
Arithmetic Operations in C
These operators are used to perform arithmetic/mathematical operations on operands. Examples: (+, -, *, /, %,++,–). Arithmetic operators are of two types:a) Unary Operators:
Operators that operate or work with a single operand are unary operators. For example: Increment(++) and Decrement(–) Operatorsint val = 5;…[Read more]
 - 
	
	
sherinangel started the topic Types of operators in the forum C Programming 2 years, 5 months ago
Arithmetic Operators
Relational Operators
Logical Operators
Bitwise Operators
Assignment Operators
Other Operators1. Arithmetic Operations in C
These operators are used to perform arithmetic/mathematical operations on operands. Examples: (+, -, *, /, %,++,–).Relational Operators in C
These are used for the comparison of the values of two o…[Read more] - 
	
	
sherinangel started the topic Operators in c programming in the forum C Programming 2 years, 5 months ago
Operators can be defined as the symbols that help us to perform specific mathematical, relational, bitwise, conditional, or logical computations on operands. In other words, we can say that an operator operates the operands
Arithmetic Operators
Relational Operators
Logical Operators
Bitwise Operators
Assignment Operators
Other Operators - 
	
	
sherinangel started the topic acos() in c programming in the forum C Programming 2 years, 5 months ago
`#include <stdio.h>
#include <math.h>int main()
{
// constant PI is defined
const double PI = 3.1415926;
double x, result;x = -0.5;
result = acos(x);
printf(“Inverse of cos(%.2f) = %.2lf in radiansn”, x, result);// converting radians to degree
result = acos(x)*180/PI;
printf(“Inverse of cos(%.2f) = %.2lf…[Read more] - 
	
	
sherinangel started the topic toupper() in c programming in the forum C Programming 2 years, 5 months ago
`// C program to demonstrate
// example of toupper() function.
#include <ctype.h>
#include <stdio.h>int main()
{
char ch;ch = ‘g’;
printf(“%c in uppercase is represented as %c”,
ch, toupper(ch));return 0;
} - 
	
	
sherinangel wrote a new item 2 years, 5 months ago
In c, we can divide a large program into the basic building blocks known as function. The function contains the set of programming statements enclosed by {}. A function can be called multiple times to provide […]
 - 
	
	
sherinangel started the topic if statment in c programming in the forum C Programming 2 years, 5 months ago
n C, an if statement lets you conditionally process a statement when the specified test expression evaluates to a nonzero value. The test expression must be of arithmetic or pointer type
`if (score >= 90)
grade = ‘A’; - 
	
	
sherinangel started the topic Nested if else in c programming in the forum C Programming 2 years, 5 months ago
#include <stdio.h>
int main() {
// variable to store the given number
int n;//take input from the user
scanf(“%d”, &n);//if else condition to check whether the number is even or odd
if (n % 2 == 0) {
//the number is even
printf(“Even”);
} else {
//the number is odd
printf(“Odd”);
}return 0;
} - 
	
	
sherinangel started the topic Microsoft Office VS Microsoft Word in the forum Microsoft Excel 2 years, 5 months ago
MS Word is a processing software which is used for writing letters, essay, notes, etc. Whereas, MS Excel is a spreadsheet software where a large amount of data or information can be saved in a systematic tabular manner in numerical and alphabetical values
 - 
	
	
sherinangel started the topic tan() function in c programming in the forum C Programming 2 years, 5 months ago
#include <stdio.h>
#include <math.h>int main()
{
double x;
double result;x = 2.3;
result = tan(x);
printf(“tan(%.2lf) = %.2lfn”, x, result);x = -2.3;
result = tan(x);
printf(“tan(%.2lf) = %.2lfn”, x, result);x = 0;
result = tan(x);
printf(“tan(%.2lf) = %.2lfn”, x, result);return 0;
} - 
	
	
sherinangel wrote a new item 2 years, 5 months ago
what is function of scroll bar in microsoft excel ?
 - 
	
	
sherinangel wrote a new item 2 years, 5 months ago
what is tan() ?
 - 
	
	
sherinangel started the topic microsoft-office in the forum Microsoft Excel 2 years, 5 months ago
#include<stdio.h>
int main()
{
Printf(“Hello world!”);In Microsoft office how to use tool bar what things it uses?
Return 0;
} - 
	
	
sherinangel started the topic structure of c programming in the forum C Programming 2 years, 5 months ago
<li><a href="https://developerpublish.com/academy/forums/topic/what-is-miscellaneous-operator/">What is miscellaneous operator?</a>
`#include<stdio.h>
int main()
{
printf(“hello world”)
return 0;
} 
