which is best institue to learn C/C++ IN AMEERPET OR
MAITHRIVANAM OR SR NAGAR, PLEASE HELP. THANKS IN ADVANCE

Answer Posted / siva

Srinivas at Lakidakapul,which is near nelofur Hosiptial.
For C,C++ programming practice is must.

Is This Answer Correct ?    0 Yes 17 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

how can i access a direct (absolute, not the offset) memory address? here is what i tried: wrote a program that ask's for an address from the user, creates a FAR pointer to that adress and shows it. then the user can increment/decrement the value in that address by pressing p(inc+) and m(dec-). NOW, i compiled that program and opened it twice (in 2 different windows) and gave twice the same address to it. now look what happen - if i change the value in one "window" of the program, it DOES NOT change in the other! even if they point to the same address in the memory! here is the code snippet: //------------------------------------------------------ #include //INCLUDE EVERY KNOWN HEADER FILE #include //FOR ANY CASE... #include #include #include main() { int far *ptr; //FAR POINTER!!! long address; char key=0; //A KEY FROM THE KEYBOARD int temp=0; clrscr(); cout<<"Enter Address:"; cin>>hex>>address; //GETS THE ADDRESS clrscr(); (long)ptr=address; temp=*ptr; //PUTS THE ADDRESS IN THE PTR cout<<"["<

1810


What is the maximum combined length of command line arguments including the space between adjacent arguments?

591


Explain the term memory alignment?

677


Should I learn c or c++ first?

566


What is the difference between a baller and a reference in C++?

576






What is the iunknown interface?

675


What is a breakpoint?

559


How to declare a function pointer?

575


Can the operator == be overloaded for comparing two arrays consisting of characters by using string comparison?

562


what is the use of void main() in C++ language?

639


Write a function to find the nth item from the end of a linked list in a single pass.

567


How does the copy constructor differ from the assignment operator (=)?

619


What are the differences between java and c++?

528


What is a vector c++?

552


What will the line of code below print out and why?

324