Why void main is used in c?
No Answer is Posted For this Question
Be the First to Post Answer
What are the two forms of #include directive?
Explain what?s happening in the first constructor: public class c{ public c(string a) : this() {;}; public c() {;} } How is this construct useful?
class foo { public: static int func(const char*& p) const; }; This is illegal, why?
How can I prevent another program from modifying part of a file that I am modifying?
Find the output? void main() {float a=2.0; printf("\nSize of a ::%d",sizeof(a)); printf("\nSize of 2.0 ::%d",sizeof(2.0));}
11 Answers IBM, TCS,
Explain how do you print only part of a string?
Explain what is the concatenation operator?
What are the types of type specifiers?
6. Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()
What is a pointer value and address in c?
where does malloc() function get the memory?
what is the output of below code int x=8,y; x>>=2; y=x; what is y value. NOTE:EXPLANATION IS COMPALSARY with binary bits