what is available in C language but not in C++?

Answers were Sorted based on User's Feedback



what is available in C language but not in C++?..

Answer / mukhtar

In c u can create variable with name new and delete but not
in c++.

Is This Answer Correct ?    40 Yes 22 No

what is available in C language but not in C++?..

Answer / chandrasekhar

c progrm donein top to bottom apparoch but c++bottom to top
apparoch

Is This Answer Correct ?    18 Yes 1 No

what is available in C language but not in C++?..

Answer / preeti singh

C allows a void* pointer to be assigned to any pointer type
without a cast, whereas C++ does not.

void* ptr;
int *i = ptr;

int *j = malloc(sizeof(int) * 5);

this is valid in C but not in C++.
In C++ explicit cast needs to be applied as given below.

void* ptr;
int *i = (int *) ptr;

int *j = (int *) malloc(sizeof(int) * 5);

Is This Answer Correct ?    13 Yes 1 No

what is available in C language but not in C++?..

Answer / hussain reddy

malloc calloc realloc and free in c but not in c++

Is This Answer Correct ?    7 Yes 4 No

what is available in C language but not in C++?..

Answer / amit soni

c is a structured language but c++ is object orientd.

Is This Answer Correct ?    4 Yes 2 No

what is available in C language but not in C++?..

Answer / fynny

c supports register level programing, but c++ doesnot and
hence C is used in developing the operating system.....BY FYNNY

Is This Answer Correct ?    2 Yes 2 No

what is available in C language but not in C++?..

Answer / jibin jose

type conversion in c : (Datatype)value
type conversion in c++ : int(Datatype)

Is This Answer Correct ?    1 Yes 2 No

what is available in C language but not in C++?..

Answer / faheem

in c default return type is void but in c++ it is int.

Is This Answer Correct ?    2 Yes 7 No

what is available in C language but not in C++?..

Answer / akash

c secures more privacy than c++

Is This Answer Correct ?    0 Yes 6 No

what is available in C language but not in C++?..

Answer / sara

pointers r available in c which is not available in c++

Is This Answer Correct ?    8 Yes 44 No

Post New Answer

More C Interview Questions

what is event driven software and what is procedural driven software?

0 Answers  


How many types of sorting are there in c?

0 Answers  


In a byte, what is the maximum decimal number that you can accommodate?

0 Answers  


write a program fibonacci series and palindrome program in c

0 Answers   Aditi Placement Service,


Explain the properties of union.

0 Answers  






How can I find the modification date and time of a file?

0 Answers  


Explain in detail how strset (string handling function works )pls explain it with an example.

1 Answers  


Can include files be nested? How many levels deep can include files be nested?

0 Answers   Aspire, Infogain,


Explain what are reserved words?

0 Answers  


what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these

2 Answers   IBM,


what are the advantage of pointer variables? write a program to count the number of vowels and consonants in a given string

3 Answers  


What are variables c?

0 Answers  


Categories