Explain the Difference between the New and Malloc keyword.
No Answer is Posted For this Question
Be the First to Post Answer
Why static is used in c?
consider the following program sigment int n,sum=1; switch(n) { case 2:sum=sum+2; case 3:sum*=2; break; default:sum=0;} if n=2, what is the value of sum a.0 b.6 c.3 d.none
Why main is used in c?
What do you mean by scope of a variable in c?
How can you convert integers to binary or hexadecimal?
Explain what is the difference between declaring a variable and defining a variable?
What does sizeof function do?
what about "char *(*(*a[])())();"
Why pointers are used in c?
Write a program to input the price of 1 burger and the number of burgers eaten by a group of friends .print the total amount to be paid by the group?
What is 2 d array in c?
What is string in c language?