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 |
Explain how can type-insensitive macros be created?
What is a program flowchart and how does it help in writing a program?
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }
Where we use clrscr in c?
Array is an lvalue or not?
Write a program to check palindrome number in c programming?
difference between c and c++?
Given a number N, product(N) is the product of the digits of N. We can then form a sequence N, product(N), product(product(N))… For example, using 99, we get the sequence 99, 99 = 81, 81 = 8. Input Format: A single integer N Output Format: A single integer which is the number of steps after which a single digit number occurs in the sequence. Sample Test Cases: Input #00: 99 Output #00: 2 Explanation: Step - 1 : 9 * 9 = 81 Step - 2 : 8 * 1 = 8 There are 2 steps to get to this single digit number. Input #01: 1137638147
/*what is the output for the code*/ void main() { int r; r=printf("naveen"); r=printf(); printf("%d",r); getch(); }
Why c is known as a mother language?
how to swap 4 number without using temporary number?
What are inbuilt functions in c?