which is an algorithm for sorting in a growing Lexicographic
order
Are local variables initialized to zero by default in c?
how to add two numbers without using arithmetic operators?
How can I get the current date or time of day in a c program?
main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?
convert 0.9375 to binary
how to swap 2 numbers in a single statement?
What are disadvantages of C language.
What is the easiest sorting method to use?
write a program to find the frequency of a number
What is the purpose of void in c?
how to display 2-D array elements in spiral
what is the difference between strcpy() and memcpy() function?