why c++ is a highlevel language
Answers were Sorted based on User's Feedback
Answer / vivek kumar kanojia
C++ is the high level language because
1.It uses OOP
2.syntax and semantics are easy to understand
3.It is used to solve real world problems
| Is This Answer Correct ? | 9 Yes | 2 No |
Answer / siva
C++ programs are compiled by using compiler
Compiler converts high lever programs into low level.
There are two parts in compiler
High level -> assembly
Assembly -> machine level
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / juzer
c or c++ is a middle-level language. This is because
it combines the best elements of high-level languages with
the control and flexibility of assembly language.
| Is This Answer Correct ? | 1 Yes | 0 No |
What is namespace?
What is encapsulation with example?
//what is wrong with the programme?? #include<iostream.h> template <class first> class dd { first i; public: void set(); void print(); }; void dd< first>:: set() { cin>>i; } void dd< first>::print() { cout<<"\n"<<i; } void main() { dd <char>g; g.set(); g.print(); }
what is the difference between ERROR and EXCEPTION?
Write a program to get the binary tree.
What is an example of genetic polymorphism?
What are oops functions?
WHY FUCTION OVERLOADING DOSENOT RETURN A RETEN TYPE
What is Hashing and how is it done? Pictorial form?
What is the difference between static polymorphism and dynamic polymorphism?
What are oops methods?
#include <string.h> #include <stdio.h> #include <stdlib.h> #include <conio.h> void select(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); select(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void select(char *items, int count) { register int a, b, c; int exchange; char t; for(a = 0; a < count-1; ++a) { exchange = 0; c = a; t = items[ a ]; for(b = a + 1; b < count; ++b) { if(items[ b ] < t) { c = b; t = items[ b ]; exchange = 1; } } if(exchange) { items[ c ] = items[ a ]; items[ a ] = t; } } } design an algorithm for Selection Sort