retagged by
234 views

1 Answer

0 votes
0 votes

The structured programming languages allows the program to be splied into multiple blocks of execution.

example : C language

In C, you can split the program into such named blocks called functions. That is why it is called a structured programming language.

Related questions

0 votes
0 votes
2 answers
1
iarnav asked May 27, 2017
465 views
What is meant by precedence rule for evaluation of expressions?
0 votes
0 votes
1 answer
2
iarnav asked May 27, 2017
260 views
Consider a pointer declaration int i=10,*p; p=&x;Is p – – ; a valid statement, justify? explain in as simple way as possible.
0 votes
0 votes
1 answer
3
iarnav asked May 27, 2017
235 views
What is the main difference between array of pointers and pointer to an array? please Explain with the help of a program/example
0 votes
0 votes
0 answers
4
iarnav asked May 27, 2017
167 views
how to Write a program to search a key string in a array of strings,if a key string is found then return its position and then replace that key string by any string using...