Answer Posted / kiran kumar yakkala
we have already C,
there are some programming languages which offer object
orientation before c++.
designers implemented C language with OOPS concept.
means c++ is nothing but C + 1 feature(OOPS), in C++
environment c++ means c+1. so thats why they named only C++.
| Is This Answer Correct ? | 22 Yes | 3 No |
Post New Answer View All Answers
Explain what is the difference between a string and an array?
what are the program that using a two dimensional array that list the odd numbers and even numbers separately in a given 10 inputs values
What's the difference between constant char *p and char * constant p?
Can one function call another?
Give me the code of in-order recursive and non-recursive.
What is the difference between text files and binary files?
What does sizeof function do?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
What is gets() function?
How does sizeof know array size?
write a C program: To search a file any word which starts with ?a?. If the word following this ?a? starts with a vowel.Then replace this ?a? with ?a? with ?an?. redirect with the output onto an output file.The source file and destination file are specified by the user int the command line.
Write a program to check armstrong number in c?
Do variables need to be initialized?
What is %s and %d in c?
What is c preprocessor mean?