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

Answer Posted / mukhtar

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

Is This Answer Correct ?    40 Yes 22 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.

15202


What is the difference between #include and #include 'file' ?

698


What does c mean before a date?

715


void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply

2355


Can we declare variable anywhere in c?

626






Why is c called a structured programming language?

828


to find the closest pair

1932


write a progrmm in c language take user interface generate table using for loop?

1667


Write a program to check whether a number is prime or not using c?

678


What is an lvalue in c?

790


How do you define CONSTANT in C?

754


using only #include and #include Write a program in C that will read an input from the user and print it back to the user if it is a palindrome. The string ends when it encounters a whitespace. The input string is at most 30 characters. Assume the string has no spaces and distinguish between and lowercase. So madam is a palindrome, but MadAm is not a palindrome. Use scanf and %s to read the string. Sample Test: Enter a string: madam madam is a palindrome. Enter a string: 09023 09023 is not a palindrome.

1424


Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.

1583


What is the data segment that is followed by c?

716


If a variable is a pointer to a structure, then which operator is used to access data members of the structure through the pointer variable?

890