What are loops in c?
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }
How to establish connection with oracle database software from c language?
Write a program to print fibonacci series without using recursion?
i want to know aptitude questions,technical questions
difference between c and c++?
Here is alphabets : abcdefgh 1) how to reverse. as hgfedcba 2) after reversal, how to group them in a pair hg fe dc ba.
write a program that explain #define and # undef directive
Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon
What is the use of getchar() function?
What are the different categories of functions in c?
Explain how do you determine a file’s attributes?
Is it valid to address one element beyond the end of an array?