a sequence of bytes with one to one corrspondence to those in the external device
a) sequential addressing
b) address
c) byte code
d) none
No Answer is Posted For this Question
Be the First to Post Answer
how can I convert a string to a number?
Describe the complexity of Binary search, Quicksort and various other sorting and searching techniques..
What should malloc() do?
difference of two no's with out using - operator
What is function pointer and where we will use it
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
Explain the use of fflush() function?
Why do we use & in c?
There seem to be a few missing operators ..
What is Bitwise Operator and how it works?
Program to find the sum of digits of a given number until the sum becomes a single digit. (e.g. 12345=>1+2+3+4+5=15=>1+5=6)
Write a C program to count the number of email on text