In: Computer Science
1. Create a symbolic constant called PI in two different manners. For both, the value that is associated with the constant should be 3.14159
2. x = 0; y = 5;
Is the following condition true or false?
if ( x > 0 and x < 10 or y = = 4)
3. What statement is used to bring in libraries at the top of your C program?
1. We can not creating constant PI in two different ways there will be a error.
2. false
3.The statements written in the beginning of the program are known as header files.
#include<stdio.h> is used bring the standard input and output file
#include<conio.h> is used to bring console input and output.