Latest Answer: i think it is the directory where header files are keptin turbo c it is include folderpuran ...
Latest Answer: A sequence point is loosely referred as the point at which an expression is evaluated and all the objects involved in that expression are assigned their fresh values, if any.Example: 1. Between the statements i. printf("%d", *intp++) and ...
Latest Answer: #include offset = offsetof(type,member);use this macro.or visit below link for more details. http://www.thinkage.ca/english/gcos/expl/c/lib/offset.html ...
Latest Answer: Here is my code fragement. It shows passing the structure as argument and returning it as well #include #include #include#includestruct abc { int x; ...
Write sample code or algorithim to get all possible combinations of data that will be entered from keyboard
like, If i enter 1 2 3 then it should show 1 2 31 3 2 2 1 3 All 6 possible combnations
Latest Answer: Bubble Sort,Insertion Sort,Shell Sort,Merge Sort,Heap Sort. ...
Latest Answer: Simultaneously go through the list by ones (slow iterator) and by twos (fast iterator). If there is a loop the fast iterator will go around that loop twice as fast as the slow iterator. The fast iterator will lap the slow iterator within a single pass ...
Latest Answer: I guess the subscript here in the sense of arrays:Subscript is the offset of the array. Say, int array[5];To access the second element, we use array[1], where 1 is the subscript.Which mean to point to the location after 1 such element. So it will ...
Latest Answer: A dangling pointer is a pointer to storage that is no longer allocatedThese examples can further clarify the point { char *cp = NULL; /* ... */ { char c; cp = &c; } /* c falls out of scope */ /* cp is now a dangling ...
View page << Previous 6 7 8 9 [10] 11 12 13 14 15 Next >>

Go Top