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 the size of structure pointer in c?

0 Answers  


what is the output on the screen? int n; n=printf("my name is %d",printf("kiran %d",printf("kumar"))); printf("\n %d \n",n);

4 Answers   TCS,


How can I trap or ignore keyboard interrupts like control-c?

0 Answers  


Can we increase size of array in c?

0 Answers  


Input is "Jack and jill went up a hill" To print output is 1-letter word(s)-1 2-letter words-1 3-letter words-1 4-letter words-4

1 Answers   Mind Tree, TCS,


What are 3 types of structures?

0 Answers  


Write a program which has the following seven functions. The functions should be: • main() this calls the other 6 functions • fget_long() a function which returns a long data type from a file • fget_short() a function which returns a short integer variable from a file • fget_float() a function which returns a floating point variable from a file • fprt_long() a function which prints its single, long argument into a file • fprt_short() a function which prints its single, short argument into a file • fprt_float() a function which prints its single, floating point argument into a file. You should use fscanf() to get the values of the variables from the input (the file) and fprintf() to print the values to the other file. Pay attention to using the correct format for each of the data types.

0 Answers  


Write a C program that reads a series of strings and prints only those ending in "ed"

2 Answers   Accenture,


What are predefined functions in c?

0 Answers  


develop a breakfast order booking system using Functions, Structures and Arrays. The system is to support the operations shown to the user in the following system’s menu: Welcome to Asim's Restaurant Select an operation? 1 Make a breakfast order 2 Modify existing order 3 Cancel existing order 4 Print Bill 5 Exit Type in your selection (1, 2, 3, 4 or 5): The program will include an array of structures. The structure type is called MenuItem, and the array of structures should be declared as menu[50] to store upto 50 breakfast menu items. The MenuItem structure must have the following 4 data fields (i.e. members): Code, description, unitprice, and quantity. Your program must define at least the following functions:  Function LoadData(…) that loads the data of breakfast menu items from an input file menu.txt into the array menu.  Five separate functions to handle the program main menu five tasks shown above. In general, function main() should load the data into the array menu and display the main menu of the above mentioned tasks. Based on the option selected, the corresponding function should be called. Users must make an order before requesting modify, cancel or print order bill (See the given sample run). Here is a more detailed explanation on the above tasks and functions. LoadData(…) Opens the input file menu.txt (you will create it) containing breakfast menu items data (See below) and assign these values to the corresponding array menu structure fields. Assign zero to the quantity field of the loaded menu items. Welcome to Asim's Restaurant Select an operation? 1 Make a breakfast order 2 Modify existing order 3 Cancel existing order 4 Print Bill 5 Exit Type in your selection (1, 2, 3, 4 or 5): MakeOrder(…) This function is called when the user selects option 1 from the main menu. It first displays the breakfast menu items to the user (stored in the array menu) along with all the necessary information (item code, description and unit price). It then requests the user to select an item using the item code (see the sample run). When the user enters an item code number the program should verify the code number and increment the quantity of the selected item in the array menu. Your program should reject invalid item codes and request the user to re-enter the item code or stop the entry. PrintBill(…) This function is called when the user selects option 4 from the main menu. The function displays the breakfast menu items in the breakfast order by printing the values of all MenuItem members of the array menu that have quantity value above zero. Print a nicely formatted bill (See the sample run). CancelOrder(…) This function is called when the user selects option 3 from the main menu. It will cancel the breakfast order by setting the quantity value of all the array menu structures to zero. ModifyOrder(….) This function is called when the user selects option 2 from the main menu. The task of this function is to allow the user to edit an existing breakfast order with two operations: Adding more breakfast items and/or altering the breakfast item that were ordered before (examine the sample program run). Handling Errors and Invalid Input Your program should reply safely to any erroneous situation or input with appropriate message to the user and flow nicely and correctly to the next operation (Examine the sample program run). Additional functions Use of functions is highly recommended for any additional special tasks needed by your solution. Global variables are not allowed except for max array menu size 50. You must pass the needed parameters through functions parameter lists.

0 Answers  


what is output of the following statetment?Printf(“%x”, -1<<4); ?

5 Answers  


How does normalization of huge pointer works?

0 Answers  


Categories