Why malloc is faster than calloc?
No Answer is Posted For this Question
Be the First to Post Answer
Why main function is special give two reasons?
Write a program to find given number is even or odd without using any control statement.
What are header files in c?
When c language was developed?
11. Look at the Code: #include<string.h> void main() { char s1[]="abcd"; char s2[10]; char s3[]="efgh"; int i; clrscr(); i=strcmp(strcat(s3,ctrcpy(s2,s1))strcat(s3,"abcd")); printf("%d",i); } What will be the output? A)No output B) A Non Integer C)0 D) Garbage
c program to add and delete an element from circular queue using array
Explain what is the difference between null and nul?
How does normalization of huge pointer works?
what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }
WHAT IS ABSTRACT DATA TYPE
How to avoid buffer overflow?
What is the purpose of sprintf() function?