⟩ How is function itoa() written in C?
#include<stdlib.h>
#include<stdio.h>
int main()
{
int n = 6789;
char p[20];
itoa(n,s,10);
printf("n=%d,s=%s",n,s);
return 0;
}
#include<stdlib.h>
#include<stdio.h>
int main()
{
int n = 6789;
char p[20];
itoa(n,s,10);
printf("n=%d,s=%s",n,s);
return 0;
}
Explain Which microprocessor accepts the program written for 8086 without any changes?
Explain SIM and RIM instructions?
What is Hard Drive (HD)?
Which Logic calculations are done in which type of registers?
What you understand by a hard disk and how are they classified?
What you understand by access time. Explain different types of timings in a hard disk drive?
Explain the purpose of interleave?
Explain the various form factors in which the hard disks are available?
What you understand by Formatting in reference to hard disks?
Explain Which Segment is used to store interrupt and subroutine return address registers?