Why pointers are used in c?
No Answer is Posted For this Question
Be the First to Post Answer
Why the use of alloca() is discouraged?
any "C" function by default returns an a) int value b) float value c) char value d) a & b
What is the difference between exit() and _exit() function in c?
How do you write a program which produces its own source code as its output?
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.
main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }
What are the c keywords?
Explain what?s happening in the first constructor: public class c{ public c(string a) : this() {;}; public c() {;} } How is this construct useful?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
define c
write a programme that inputs a number by user and gives its multiplication table.
how to use enum datatype?Please explain me?