C,c++, Java is all are structural oriented or procedure
oriented language..?
Answers were Sorted based on User's Feedback
Answer / v.prasad
c is structural oriented language c++ is structural &
procedure oriented language bt java is procedure oriented
language
| Is This Answer Correct ? | 8 Yes | 1 No |
c,c++ are structural&procedure oriented languages java is
object oriented
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / srika
C is a Structured & procedure lang
C++ is a procedure lang
java is a procedure lang(can be acceptable)
so all are procedural lang
| Is This Answer Correct ? | 0 Yes | 0 No |
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
How many types of functions are there in c?
what is the maximum no. of bytes calloc can allocate
What are dangling pointers?
what information does the header files contain?
6 Answers BSNL, Cisco, GDA Technologies,
#include<stdio.h> #include<conio.h> void main() { clrscr(); int a=0,b=0,c=0; printf("enter value of a,b"); scanf(" %d %d",a,b); c=a+b; printf("sum is %d",c); getch(); }
How will you divide two numbers in a MACRO?
What does the error message "DGROUP exceeds 64K" mean?
What is logical error?
To print the pattern 1 2 3 4 5 10 17 18 19 6 15 24 25 20 7 14 23 22 21 8 13 12 11 10 9
write a program to interchange the value between two variable without using loop
How can you draw circles in C?