What is a sequential access file?
No Answer is Posted For this Question
Be the First to Post Answer
plz answer.. a program that takes a string e.g. "345" and returns integer 345
what is c language.
program to get the remainder and quotant of given two numbers with out using % and / operators?
10 Answers College School Exams Tests, IBM,
What is the difference between getch() and getche()?
What is typeof in c?
What is a scope resolution operator in c?
x=2,y=6,z=6 x=y==z; printf(%d",x)
13 Answers Bharat, Cisco, HCL, TCS,
Write code for finding depth of tree
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; }
Explain what is the concatenation operator?
Why is c called c?
Can we add pointers together?