Answer Posted / sunil s patil
Answer
c is not object oriented but c++ is object oriented
Actually c is a procedural programming language which
cann't face the real world problem. It has some drawback
like a global data is shared by all function and if in a
large program it is find out difficult that which function
uses which data.
On the other hand c++ is an object oriented programming
language which eliminate some pitfall of conventional or
procedural programming language. It is a concept or
approach for designing a new software. It is nothing to do
with any programming language although a programming
language which support the oops concept to make it easier
to implement.
This is the main different between c and c++.
in c we use scanf function as standard input function,while
in c++ we use streame cin>> for input.like this for output
in c we use printf function,while in c++ we use cout<< as a
output function.
in c we use #include<stdio.h>as iclusion file,while in c++
we use #include<iostreame>as inclusion file.
IN c-programe the main function could not return a value
but in the c++ the main function shuld return a value
A function can be declared in C as int fun();. This means
that fun()is a function without any argument or any number
of arguments.But in C++, this means that the function with
no argument at all.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is the full form of getch?
Define circular linked list.
What is a char in c?
What are pointers?
Can a function be forced to be inline? Also, give a comparison between inline function and the C macro?
Can 'this' pointer by used in the constructor?
Is exit(status) truly equivalent to returning the same status from main?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
What is extern storage class in c?
Describe newline escape sequence with a sample program?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
Explain what does the characters 'r' and 'w' mean when writing programs that will make use of files?
How many levels of indirection in pointers can you have in a single declaration?
Explain what is the benefit of using #define to declare a constant?
What is #include called?