What are the advantages of using new operator as compared to the function malloc ()?
No Answer is Posted For this Question
Be the First to Post Answer
What is an operator?
print ur name 20,000 times without using inbuilt library functions like printf,scanf,gets,puts,getchar or putchar
what is the mean of c languages.
What is spaghetti programming?
what is the defrenece between structure and union
Write a factorial program using C.
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
When should the register modifier be used? Does it really help?
What is void main ()?
to find the closest pair
What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }
Write a program to swap two numbers without using a temporary variable?