what is the diffrence between c# and c++
Answers were Sorted based on User's Feedback
Answer / vaishali
c is procedure oriented language&c++is object oriented language
Is This Answer Correct ? | 18 Yes | 8 No |
Answer / thaah muhammed
C# is a distinct language from C++. C++ is designed for
general object oriented programming in the days when the
typical computer was a standalone machine running a command
line-based user interface. C++ is a general-purpose
programming language with high-level and low-level
capabilities. It is a statically typed, free-form,
multi-paradigm, usually compiled language supporting
procedural programming, data abstraction, object-oriented
programming, and generic programming.
C++ is regarded as a mid-level language. This indicates that
C++ comprises a combination of both high-level and low-level
language features. C# is designed specifically to work with
the .Net and is geared to the modern environment of Windows
and mouse-controlled user interface, networks and the internet.
Is This Answer Correct ? | 4 Yes | 0 No |
Answer / rajakumar chirra
c language:
c language is the procedure oriented programming
language,then this is comparison of c++, c language is the
olgder version.C can have the some technical features.c
language can check the errors in line line process i.e.
called compiler language.
c++::
c++ is the object oriented programming language,
comparison of c language c++ is the advanced language. c++
can check the errors only one time of the entire program
i.e. called the interpreter.
Is This Answer Correct ? | 0 Yes | 1 No |
Answer / shri vishnu
c++ provides data security.
moreover, in c++ it is possible to declare the variables
wherever tn func. but in c all declarations should done
before the operation.
Is This Answer Correct ? | 1 Yes | 4 No |
Answer / anu.shanthi8
c is a compiler.
c++ have oops concept and improved version of c#.
c++ is interpreter .it checks code line by line.
c# does not check line by line.
Is This Answer Correct ? | 0 Yes | 4 No |
What is R T T I ?
Write an operator overloading program to Overload ‘>’ operator so as to find greater among two instances of the class.
What is class and object in oops?
This program numbers the lines found in a text file. Write a program that reads text from a file and outputs each line preceded by a line number. Print the line number right-adjusted in a field of 3 spaces. Follow the line number with a colon, then one space, then the text of the line. You should get a character at a time and write code to ignore leading blanks on each line. You may assume that the lines are short enough to fit within a line on the screen. Otherwise, allow default printer or screen output behavior if the line is too long (i.e., wrap or truncate). A somewhat harder version determines the number of spaces needed in the field for the line numbers by counting lines before processing the lines of the file. This version of the program should insert a new line after the last complete word that will fit within a 72-character line.
In the following declaration of main, "int main(int argc, char *argv[])", to what does argv[0] usually correspond? 1) The first argument passed into the program 2) The program name 3) You can't define main like that
What is variable example?
why function overloading is not called as pure polymorphism?
What is friend function?
When is an object created and what is its lifetime?
If a=5, b=6, c=7, b+=a%c*2. What is the final value of b?
can main method be overloaded...??? How..????
What are callback functions in c++