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 |
accept character from keyboard untill the user presses the enter key.If the user enters any character other than upper case(A-Z)alphabets program should stop taking any input
Write a c program to enter a string of paragraph and replacing a particular word which is repeated in the paragraph by another word?
2 Answers ME, Synfusion, Wipro,
how to find out the biggest element (or any other operation) in an array which is dynamic. User need not to mention the array size while executing.
void main() { int i=5; printf("%d",i++ + ++i); }
How can I find leaf node with smallest level in a binary tree?
Can main () be called recursively?
What is a spanning Tree?
Explain the use of function toupper() with and example code?
who is the father of c
#include<stdio.h> int main(){ int a[]={1,2,3,5,1}; int *ptr=a+4; int y=ptr-a; printf("%d",y); }
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none
Which driver is a pure java driver