Other Programming & Computer Science Answers

Questions: 1 727

Answers by our Experts: 1 357

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Search & Filtering

#include <dos.h>
#include <bios.h>
struct DAP {
unsigned char size;
unsigned char reserved1;
unsigned char blocks;
unsigned char reserved2;
unsigned char far *buffer;
unsigned long int lbalod;
unsigned long int lbahid;
} dap;
char st[80];
unsigned char buf[512];
FILE *fptr;
void main (void)
{
puts ("enter the lba low double word: ");
gets (st);
dap.lbalod=atol(st);
puts ("enter the lba high double word: ");
gets (st);
dap.lbahid=atol(st);
dap.size=16;
dap.reserved1=0;
dap.blocks=1;
dap.reserved2=0;
dap.buffer = (unsigned char far *)MK_FP(_DS,buf);
AH=0x42;
_DL=0x80;
_SI=(unsigned int)&dap;
geninterrupt(0x13);
puts ("enter the path: ");
gets (st);
fptr = fopen(st,"wb");
fwrite(buf,512,1,fptr);
fclose (fptr);
}
using BORLANDC compiler
1_How can we specify the LBA address n show the contents of file created by this program?
2_ How can take the memory dump which shows the successive operation of this program?
3_How can describe the values of this dump to prove the successive operation.
4_ describe whole process.
In pointer Chapter, there is this concept of Pointer to Pointer. Here there are a few declarations
1. int i=50
2. int *ptr
3. int **ptrptr
Now, why does a pointer variable that will store the address of another pointer variable have to be
declared with double ** ?? why will just one * symbol not do?
AND also if i have to declare another pointer that will store the address of ptrptr, should i have to
declare it with *** symbols? or how many?
I have 2 columns in Excel. Column 1 - its just plain English words like hello, food, fight, kick, etc. In column 2 - I have a list thats going to be for hebrew translation words.

now Im trying to format column 2 to automatically type in hebrew letters via language bar.

So in other words, I want column 2 to be able to write in hebrew without using a special 3rd party installed font. But rather just from the language bar thats already on a windows operating system.

Can it be done?
about and features of storage technology with pictorial presentation
3. What is the significance of the () after PrintLoop? What does this indicate?
Explain any four options supported by MS Excel to handle databases in MS Excel.
Discuss the principles, characteristics and features of programme developed using a .Net framework.
Question #26033.
Sharon has started to use both the stock details management and the file information viewer
features of the application. However, while using the file information viewer application, she
accidentally enters the path of a folder that does not exist on her computer. This caused the
application to stop responding. In addition, the format in which the stock details are displayed is
not clear. Therefore, she asks Hayley to modify the application so that:
The file information viewer does not stop responding in case a specified folder does not exist.
The stock details management application adds a line break before every stock details entry
whenever a new entry is added to the stock details file.
Write the code snippets that Hayley should use to address the preceding two requirements
How to create a hexagon button in sdk eclipse android without using an image/icon . I search everywhere but i still cant find a solution .
the application should open the stock details file in the
read/write mode, display a message to enter new stock details, and save the details that the user
has entered. Write the code snippet that Hayley should use to accomplish the preceding task
LATEST TUTORIALS
APPROVED BY CLIENTS