what is dangling pointer?
Answer / ninja
A pointer referring to an area of memory that has been
deallocated. Dereferencing such a pointer usually produces
garbage
Is This Answer Correct ? | 18 Yes | 0 No |
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
main() { int i; for(i=0;i<5;i++) printf("%d",1l<<i); } why doesn't 'l' affect the code??????
What is Function Pointer? Explain with example?
regarding pointers concept
Dear Sir, we are required the bubble sorting programs Regs Prem
helllo sir , what is the main use of the pointer ,array ,and the structure with the example of a programe
Write an algorithm for a program that receives an integer as input and outputs the product of of its digits. E.g. 1234 = 24, 705 = 0
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
#ifdef TRUE int I=0; #endif main() { int j=0; printf("%d %d\n",i,j); }
how we do lcm of two no using c simple if while or for statement
what is the c source code for the below output? 1 0 1 1 0 1 0 1 0 1 1 0 1 0 1
CAN WE DEFINE ANY FUNCTION WITHIN A FUNCTION.