What is external variable in c?
No Answer is Posted For this Question
Be the First to Post Answer
Who is the founder of c language?
What is the difference between text files and binary files?
to get a line of text and count the number of vowels in it
what is out put of the following code? #include class Base { Base() { cout<<"constructor base"; } ~Base() { cout<<"destructor base"; } } class Derived:public Base { Derived() { cout<<"constructor derived"; } ~Derived() { cout<<"destructor derived"; } } void main() { Base *var=new Derived(); delete var; }
what is the difference between NULL & NUL keywords in C?
What is a built-in function in C?
which types of data structure will i use to convert infix to post fix???
write a program of bubble sort using pointer?
what is the difference between arrays and linked list
26 Answers MAHINDRA, Tech Mahindra, Wipro,
Give a one-line C expression to test whether a number is a power of 2. [No loops allowed - it's a simple test.]
Binary tree traversing
a 'c' program to tell that the set of three coordinates lie on a same line