What is C++
Answers were Sorted based on User's Feedback
Answer / prasanna
c++ is the extention language of c.
it is a object oriented language
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / suganya
c is a structure oriented language and c++ is the object
oriented language
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / chirag
C is object oriented language.
C is very easy language.
| Is This Answer Correct ? | 3 Yes | 6 No |
What is the ANSI C Standard?
What is .obj file in c?
Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }
Example of friendly function in c++
send me the code of flow chart generator using C-programming language amd this code should calculate the time and space complexity of the given progran and able to generate flowchart according to the given program?
What is RAM memory? and What is ROM?Who designed one is temparary and another is permanent?why they designed like that?By using far pointer which type data(whether hexadecimal)we can access?
what is d pitfalls of registers variables
How do I declare a pointer to an array?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
Why calloc is better than malloc?
What is ambagious result in C? explain with an example.
Please write the area of a RIGHT ANGLED TRIANGLE.