Give differences between - new and malloc() , delete and free() ?
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between NULL & NUL keywords in C?
Explain the difference between #include "..." And #include <...> In c?
Is it better to use a macro or a function?
Which built-in library function can be used to match a patter from the string?
How can I trap or ignore keyboard interrupts like control-c?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
What are the 5 types of organizational structures?
How can variables be characterized?
What is header file in c?
What is LINKED LIST? How can you access the last element in a linked list?
Is c is a middle level language?
main() { int a; a=++100; printf("%d",a); getch(); }