what is Structural oriented language?
give some example of this language.....?
structure oriented language means following a specific format for writing the program.... C++ is not structured oriented since we can declare the variables wherever we like before we use those ones.....
C,COBOL, FOXPRO are some of the structured oriented languages...
thank u
| Is This Answer Correct ? | 3 Yes | 3 No |
How to set a variable in the environment list?
What do you understand by normalization of pointers?
int main() { int *p=new int; *p=10; del p; cout<<*p; *p= 60; cout<<*p; } what will be the output & why?
what is the difference between char * const and const char *?
What is register variable in c language?
pascal triangle program
What is const and volatile in c?
print out put like this form 1 2 3 4 5 6 3 5 7 9 11 8 12 16 20
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
can we change the default calling convention in c if yes than how.........?
what is diognisis?
Differentiate between a for loop and a while loop? What are it uses?