What are the different types of control structures in programming?
Write a program to add a given duration with time(24hrs format)
What does 4d mean in c?
Is flag a keyword in c?
What is the significance of c program algorithms?
main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }
When can a far pointer be used?
Is there sort function in c?
what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }
wap in c to accept n number display the highest and lowest value
what is level of tree if leaf node is at level 4.please explain.
How we add our function in liabrary as liabrary function. Exp. we want use our int factorical(int); function as int pow(int,int); function working in math header file.
what are far pointers?