1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Shkiper50 [21]
3 years ago
14

Write a program that prints the following text: In C, lowercase letters are significant. main() is where program execution begin

s. Opening and closing braces enclose program statements in a routine. All program statements must be terminated by a semicolon.
Computers and Technology
1 answer:
hodyreva [135]3 years ago
7 0

Answer:

Program:

#include <stdio.h> // header file

int main() // main function

{

   printf("In C, lowercase letters are significant. main() is where program execution begins. Opening and closing braces enclose program statements in a routine. All program statements must be terminated by a semicolon."); // print statement which print the text which is said by the question to print.

return 0; // return statement

}

Output:

  • The above code print the text which is defined by the question to print

Explanation:

  • The above code is in the c programming language.
  • The first line of the code is a header file which is used to specify the meaning of the symbols used in programs.
  • The second line of the code is the main function, from which the execution will starts.
  • The third line of the code is the print statement which prints the above text.
  • The fourth line of the code is a returned statement that returned 0 from where the function is called.
You might be interested in
MATH PLZ HELP ITS DUE IN 4 MINUTES​
zheka24 [161]

Answer:

2

Explanation:

8 0
3 years ago
Read 2 more answers
if a network security professional wants to connect some computers in the same building without it using a router what type of n
marta [7]

Answer:

 the MAC addresses of wireless NICs

Explanation:

8 0
3 years ago
Read 2 more answers
What is the typical relationship between time and interest rate?
Hatshy [7]
The answer is A! Longer time period usually equals higher interest rate!
5 0
3 years ago
that average july high temperature is 85 degrees fahrenheit in new york, 88 degrees fahrenheit in denver, and 106 degrees fahren
goblinko [34]

Answer:

public class num8 {

   public static void main(String[] args) {

       System.out.println("Average Temperature in New York is 85 degrees fahrenheit");

       System.out.println("Average Temperature in Denver is 88 degrees fahrenheit");

       System.out.println("Average Temperature in Phoenix is 106 degrees fahrenheit");

   // Calculating the new average Temperatures

       System.out.println("The New Average Temperature in New York " +

               "is "+ ((0.02*85)+85 )+ " degrees fahrenheit");

       System.out.println("The New Average Temperature in Denver " +

               "is " +((0.02*88)+88 )+ " degrees fahrenheit");

       System.out.println("The New  Average Temperature in Phoenix " +

               "is "+((0.02*106)+106 )+ " degrees fahrenheit");

   }

}

Explanation:

  1. Using Java first display the previous average temperatures for the three cities as given in the question
  2. Then calculates the new average temperature by multiplying by 0.02, because of a 2 percent increase in the average temperature
  3. Display the new temperature using the System.out,println

8 0
3 years ago
PowerPoint provides a wide variety of predefined shapes that can add visual insert to a slide true or false
lozanna [386]
PowerPoint provides a wide variety of shapes for visual inserts this is true
6 0
3 years ago
Read 2 more answers
Other questions:
  • The technological advancements allowing for
    10·1 answer
  • What is the name of the interface that uses graphics as compared to a command-driven interface?
    11·1 answer
  • The five steps in the fetch/execute cycle and how do they correspond to a restaurant
    5·1 answer
  • HURRY!!!!!!
    5·1 answer
  • Caitlyn's Crafty Creations computes a retail price for each product as the cost of materials plus $14 multiplied by the number o
    10·1 answer
  • Answer is B because portrait is define that they take only photographs of people and like to communicate with people they are we
    10·1 answer
  • Design and implement an application that reads a set of values in the range 1 to 100 from the user and then creates a chart show
    8·1 answer
  • What is the relationship between agile teams and project requirements
    9·1 answer
  • What does GUI stands for and what is it function?​
    5·2 answers
  • Accenture is one of several hundred companies that has signed on to the united nations global compact (ungc) business ambition p
    6·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!