Explain the Difference between the New and Malloc keyword.
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between #include<> and #include”…”?
What is the use of #define preprocessor in c?
which operator having lowest precedence?? a.)+ b.)++ c.)= d.)%
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
what is the difference between c and c++?
how to find out the reverse number of a digit if it is input through the keyboard?
any function have arguments one or more OR not . it is compulsary a) any function compulsary have one or more arguments b) any function did not have arguments. It is not compulsary c) it is optional it is not compulsary d) none of the above
when user give a number it multiply with 9 without useing '+' and '*' oprator
What is operator promotion?
what is uses of .net
difference between object file and executable file
#include<stdio.h> void main() { int a=10,b=20,c=30; printf("%d",scanf("%d%d%d",&a,&b,&c)); } what is the output for this?