what is used instead of pointers in java than c?
How can I increase the allowable number of simultaneously open files?
What is the difference between i++ and i+1 ?(in terms of memory)
what is diognisis?
write a c program to find largest of three numbers using simple if only for one time.
What is a const pointer in c?
what is the use of getch() function in C program.. difference b/w getch() and getche()??
29 Answers HCL, IBM, Infosys, TCS, Wipro,
number of times a digit is present in a number
When is a null pointer used?
What are the 32 keywords in c?
What is the right way to use errno?
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
Differentiate abs() function from fabs() function.