answersLogoWhite

0

Only the designers Brian Kernighan and Dennis Ritchie can answer this question. But I would guess it was because of the handy notation on the drawing board to represent the concept of BEGIN and END.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

What do curly braces denote in c?

In C, curly braces {} are used to define a block of code. They group statements together, typically for functions, loops, and conditional constructs, allowing multiple statements to be treated as a single unit. This helps in organizing code and controlling the scope of variables declared within the braces. For example, the body of a function or the statements within an if or for loop are enclosed in curly braces.


How do you rectify braces expected error in c plus plus language?

This type of error indicates you've omitted braces where braces were expected. For instance, class declarations must be enclosed within curly braces, as must function definitions.


What is the purpose of a set of curly braces in a ROBOT C computer program?

In a ROBOT C computer program, a set of curly braces {} is used to define a block of code. This block groups multiple statements that should be executed together, often following control structures like loops and conditionals (e.g., if, for, while). Curly braces help organize code, making it clearer which statements belong to a particular control flow construct. They also allow for the creation of functions and procedures, encapsulating specific functionalities within the program.


What is d command for squareroot in C programming?

There are no commands in C-programming, you should use function sqrt from math.h


What is the use of c-language?

Programming, mainly.


Can you use C as OOPS?

No, it is a programming language.


Why are use c language?

For is it programming used.


What programming language does the PSP use?

c++


Where we use the c language?

In computer-programming.


What is c and why you use?

C is a programming language, and it's mostly used for Systems Programming. Most kernels these days have at least some C code in them.


How do you declare structure?

In programming, particularly in languages like C or C++, a structure is declared using the struct keyword followed by the structure name and a set of curly braces containing its members. For example: struct Person { char name[50]; int age; }; This defines a structure named Person with two members: name and age. After the declaration, you can create variables of that structure type to store data accordingly.


How do you use loop in C programming?

#include<stdio.h>