What is binary tree in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain built-in function?
What are .h files and what should I put in them?
different between overloading and overriding
Explain the advantages and disadvantages of macros.
What is the output of below code? main() { static int a=5; printf("%3d",a--); if(a) main(); }
consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value
Do you know what are the properties of union in c?
What are the different types of C instructions?
what is event driven software and what is procedural driven software?
What is mean by Data Driven framework in QTP? Can any one answer me in details on this regard.
How to define structures? ·
2)#include<iostream.h> main() { printf("Hello World"); } the program prints Hello World without changing main() the o/p should be intialisation Hello World Desruct the changes should be a)iostream operator<<(iostream os, char*s) os<<'intialisation'<<(Hello World)<<Destruct b) c) d)none of the above