Answer Posted / suriya
Structures are the C equivalent of records. A structure type
is defined by
struct struct-name
{
type field-name;
type field-name; ...
}
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
Program will then find the largest of three numbers using nested if-else statements. User is prompted to enter three numbers. Program will find the largest number and display it on the screen. All three numbers entered by the user are also displayed. If user enters 21, 33, and 5, the output should be as follows: You entered: 21, 33 and 5. The largest number is 33.
Is main a keyword in c?
How can variables be characterized?
What is meant by errors and debugging?
What are the features of c languages?
What are the disadvantages of c language?
What is the difference between ++a and a++?
Explain low-order bytes.
Explain how can I avoid the abort, retry, fail messages?
we called a function and passed something do it we have always passed the "values" of variables to the called function. such functions calles are called a) calls by reference b) calls by value c) calls by zero d) none of the above
What is static memory allocation? Explain
What are the disadvantages of external storage class?
c program to compute AREA under integral
Here is a good puzzle: how do you write a program which produces its own source code as output?
is it possible to create your own header files?