answersLogoWhite

0

Unlike COBOL, in C there are no sections and divisions; there are two main state: inside a function and outside of any functions.

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

Describe the structure of a c program?

Yes, please do.


How many structure variables of a given type can you use in a C program?

You can use unlimited number of variables for a structure and you can also declare array of structures.


what are the sections of c program?

Well, the source program doesn't have sections, the binary format consist of parts like: read-only executable, read-only data, writeable data, stack, etc


How many c sections can you have ater the first?

after having one c section all your other births have 2 b c sections 2


What are the different sections of c program?

Well, the source program doesn't have sections, the binary format consist of parts like: read-only executable, read-only data, writeable data, stack, etc


How many C-sections has Michelle Duggar had?

4


Why we are specifying C programming as structure oriented program?

Hint. Is not object oriented.


How many sections does a rondo form have?

A rondo typically consists of at least three sections, with the structure often described as ABACA or ABACABA. The "A" section represents the recurring theme, while the "B" and "C" sections introduce contrasting material. The repeated A sections create a sense of unity, while the contrasting sections provide variety and interest. The exact number of sections can vary, but the alternating pattern is a defining characteristic of the form.


C program must have?

Not, there are many people, who live happily without C-program.


How many c sections can you have before you shouldn't have anymore?

That's a question best reserved for your doctor as it varies from woman to woman. I was my mom's first c-section baby and she had two c-sections after that.


How many C sections did Ethel Kennedy have?

Ethel Kennedy had a total of 11 children, and she underwent a cesarean section (C-section) for the births of her last three children. This means she had three C-sections in total.


What is the structure of a C program with example?

In C, programs are composed of statements. These statements are terminated with a semi-colon, and are collected in sections known as functions. By convention, a statement should be kept on its own line, as shown in the example below: #include <stdio.h> int main(void) { printf("Hello, World!\n"); return 0; }