what is used instead of pointers in java than c?
Why calloc is better than malloc?
In the following code segment what will be the result of the function, value of x , value of y { unsigned int x=-1; int y; y = ~0; if(x == y) printf("same"); else printf("not same"); } a) same, MAXINT, -1 b) not same, MAXINT, -MAXINT c) same , MAXUNIT, -1 d) same, MAXUNIT, MAXUNIT e) not same, MAXINT, MAXUNIT
What are dangling pointers? How are dangling pointers different from memory leaks?
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
What is use of bit field?
inline function is there in c language?
List the variables are used for writing doubly linked list program.
What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }
In the below code, how do you modify the value 'a' and print in the function. You'll be allowed to add code only inside the called function. main() { int a=5; function(); // no parameters should be passed } function() { /* add code here to modify the value of and print here */ }
How can I open files mentioned on the command line, and parse option flags?
What is function pointer c?
What is structure packing ?