answersLogoWhite

0

A statement in C is an expression terminated with a semi-colon. That is, a semi-colon turns an expression into a statement.

User Avatar

Wiki User

8y ago

What else can I help you with?

Related Questions

How can program for c language?

first think of the logic and then write the statements


Various jump statements in c?

Jump StatementsBranching is performed using jump statements, which cause an immediate transfer of the program control. The following keywords are used in jump statements:breakcontinuegotoreturn


What are its program components?

the main() function,the#include Directive, the variable definition. function prototype, program statements, the function definition,program comments and braces are the components of program in C++


Define function in c program?

function is a self contained block or sub program of two or more statements which performs a special task when called.


Program defined function c?

function is a self contained block or sub program of two or more statements which performs a special task when called.


What is a C variable?

A variable is an entity that may change its value. In a program, the result of the processing statements are stored in the computer's memory.


Write a c program Fibonacci series using for loop in java?

Exactly what do you mean by 'C program in Java'


What do you mean by statements in C?

A statement in C is an expression terminated with a semi-colon. That is, a semi-colon turns an expression into a statement.


What are the various control statement in C language?

Control statements are the statements that control the flow of program execution. For eg: loops: For, While, Do-While, decision making using if-then-else or switch-case and there's goto to transfer control.


What is the Meaning of go to statements in c?

A 'goto' statement is an unconditional requirement to go to that part of the program. As such, statements like these cause programs to become unstructured and should be avoided if possible. Goto statements lead to some sloppy and unreadable logic.


Who is father of c program?

If you mean who designed C, then that would be Dennis Ritchie.


How do you terminate statements in C?

All statements must be terminated with a semi-colon in C.