Keywords / Reserve Words• Keywords are
predefined, reserved words used in programming that have special meanings to
the compiler.
Identifiers• An identifier in C consists of a sequence of letters, digits,
or underscore characters.• Identifiers are se…
1. Write a program that evaluates the following expression and displays the results (remember to use exponential format to display the result): (3.31 × 10-8 × 2.01 × 10-7) / (7.16 × 10-6 + 2.01 × 10-8)
Answer
#include <std…
Write a program that subtracts the value 15 from 87 and displays the result, together with an appropriate message, at the terminal. #include <stdio.h> int main (){ int x ,y , z; x = 87; y = 15; z = x - y; printf("The…
Continue Reading
Social Plugin