how does a general function , that accepts an array as a
parameter, "knows" the size of the array ?
How should it define it parameters list ?
Are enumerations really portable?
How can I handle floating-point exceptions gracefully?
can we have joblib in a proc ?
enum { SUNDAY, MONDAY, TUESDAY, }day; main() { day =20; printf("%d",); getch(); } what will be the output of the above program
dynamically allocate memory for linear array of n integers,store some elements in it and find some of them
do you think its fraud or original company?
How do you use a 'Local Block'?
how to make c program without a libary? e.g.#include<stdio.h> libary is not in c progaram.
How to access or modify the const variable in c ?
16 Answers HCL, HP,
how to find a 5th bit is set in c program
Is linux written in c?
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }