The C language terminator is
a.semicolon
b.colon
c.period
d.exclamation mark
Answer Posted / manju
a.semicolon
every statement in a ptogram which is written in c
language can be end with a semicolon. othewise it'l show a
error
| Is This Answer Correct ? | 10 Yes | 1 No |
Post New Answer View All Answers
Write a C program to help a HiFi’s Restaurant automate its breakfast billing system. Your assignment should implement the following items: a. Show the customer the different breakfast items offered by the HiFi’s Restaurant. b. Allow the customer to select more than one item from the menu. c. Calculate and print the bill to the customer. d. Produce a report to present your complete program and show more sample output. Assume that the HiFi’s Restaurant offers the following breakfast menu: Plain Egg $2.50 Bacon and Egg $3.45 Muffin $2.20 French Toast $2.95 Fruit Basket $3.45 Cereal $0.70 Coffee $1.50 Tea $1.80
What is a nested formula?
what is the diffrenet bettwen HTTP and internet protocol
What are actual arguments?
Is calloc better than malloc?
List some of the static data structures in C?
What are terms in math?
In cryptography, you could often break the algorithm if you know what was the original (plain) text that was encoded into the current ciphertext. This is called the plain text attack. In this simple problem, we illustrate the plain text attack on a simple substitution cipher encryption, where you know each letter has been substituted with a different letter from the alphabet but you don’t know what that letter is. You are given the cipherText as the input string to the function getwordSets(). You know that a plain text "AMMUNITION" occurs somewhere in this cipher text. Now, you have to find out which sets of characters corresponds to the encrypted form of the "AMMUNITION". You can assume that the encryption follows simple substitution only. [Hint: You could use the pattern in the "AMMUNITION" like MM occurring twice together to identify this]
How can you tell whether a program was compiled using c versus c++?
What is a ternary operator in c?
Is c still used?
What is function what are the types of function?
What is a memory leak? How to avoid it?
What functions are used for dynamic memory allocation in c language?
Explain what does the format %10.2 mean when included in a printf statement?