what do u mean by syntax ??
Answers
Answered by
1
Answer: Syntax means set of rules that define the structure of a language.
Explanation:
Syntax means set of rules that define the structure of a language.
It control the structure of the symbols, punctuation, and words of a programming language. It's impossible to understand, the meaning or semantics of a language without syntax.
Example
#include
int main() {
printf( “Hello” );
}
//'{}'-represent opening and closing of a statement
All statements must end with a semicolon ( ; )
These all are example related in c programming language
Answered by
2
The syntax of a computer language is the set of rules that defines the combinations of symbols that are considered to be correctly structured statements or expression in that language.
please mark as brainlist answer
Similar questions