Answer:
FALSE
Explanation:
The exit function is used to terminate or halt the process.
Syntax-
void exit(int status)
Exit function (exit()) can be used in any function not only main() and it will terminate your whole process.
<u></u>
<u>Example-</u> C Program
#include<stdio.h>
#include <stdlib.h>
// function declaration
float exitexample ( float x );
// Driver program
int main( )
{
float a, b ;
printf ( "\nEnter some number for finding square \n");
scanf ( "%f", &a ) ;
// function call
b = exitexample ( a ) ;
printf ( "\nSquare of the given number %f is %f",a,b );
/*This will not printed as exit function is in exitexample() function*/
}
float exitexample ( float x ) // function definition
{
exit(0); //exit function
float p ;
p = x * x ;
return ( p ) ;
}
It would be the social standing of a person and the economic standing of a person.
In software: Logical Volume. In hardware it's usually called RAID (Redundant Array of Inexpensive Devices).
5x+2y=3
Slope = -5.000/2.000 = -2.500
x-intercept = 3/5 = 0.60000
y-intercept = 3/2 = 1.50000
2x+3y=13
Slope = -1.333/2.000 = -0.667
x-intercept = 13/2 = 6.50000
y-intercept = 13/3 = 4.33333