What is switch in c?
No Answer is Posted For this Question
Be the First to Post Answer
Why doesnt the call scanf work?
what is the purpose of the following code, and is there any problem with the code? void fn(long* p1, long* p2) { register int x = *p1; register int y = *p2; x ^= y; y ^= x; x ^= y; *p1 = x; *p2 = y; }
Write a program to generate prime factors of a given integer?
How can I automatically locate a programs configuration files in the same directory as the executable?
What is a pointer value and address in c?
How do we select the big element or any other operation from array which is read dynamically. user need to give the elements only no need to mention the size.
how should functions be apportioned among source files?
Is c procedural or object oriented?
What is the benefit of using #define to declare a constant?
what is the difference b/w NULL and null?
1,1,5,17,61,217,?,?.
Is this program statement valid? INT = 10.50;