Give differences between - new and malloc() , delete and free() ?
No Answer is Posted For this Question
Be the First to Post Answer
what is pointer ?
10 Answers Kernex Micro Systems,
How to receive strings with spaces in scanf()
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
We can draw a box in cprogram by using only one printf();& without using graphic.h header file?
consider the following C code main() { int i=3,x; while(i>0) { x=func(i); i--; } int func(int n) { static sum=0; sum=sum+n; return(sum); } the final value of x is
How do you view the path?
What is the most efficient way to count the number of bits which are set in an integer?
main() { char as[] = "\\0\0"; int i = 0; do{ switch( as[i++]) {case '\\' : printf("A"); break; case 0 : printf("B"); break; default : printf("C"); break; }} while(i<3); }
4 Answers Vector, Vector India,
What are pointers really good for, anyway?
What is masking?
What is difference between structure and union in c?
what is C?