fabs function can be found in math.h header and you need to include it if you wish to use it .
fabs is used to find absolute value of floating point values.
example:
#include <stdio.h>
#incude <math.h>
int main(void)
{
double x;
x = -3.0L;
printf("%lf", fabs(x));
return(0);
}
since, the word 'void' in C programming language means that it does not return any value to the user or calling function....this is usually used to specify a type of function...... for this reason w use 'void'in c program..
Sizeof is an example.
No.
1. identifier 2. short for function
In C programming, C compiler is user to translate C source into C object module.
In the C Programming Language, the fabs function returns the absolute value of a floating-point number
since, the word 'void' in C programming language means that it does not return any value to the user or calling function....this is usually used to specify a type of function...... for this reason w use 'void'in c program..
There are no commands in C-programming, you should use function sqrt from math.h
toupper is used to change the case of given character to upper case
Sizeof is an example.
No.
The putpixel function is a specific function that is used in C++ programming. This command function is supposed to do point plotting via color definition of its specific points.
Programming.
1. identifier 2. short for function
it is sqrt in header math.h
In C programming, C compiler is user to translate C source into C object module.
In C programming, a precondition is a condition that must be true before a function is called, while a postcondition is a condition that is guaranteed to be true after the function has been executed.