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

Post New Answer

More C Interview Questions

What are the header files used in c language?

0 Answers  


Where register variables are stored in c?

0 Answers  


what is difference between overriding and overloading?

1 Answers  


what is the difference between char * const and const char *?

2 Answers   TCS,


What kind of sorting is this? SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort

3 Answers   Accenture,






Are the outer parentheses in return statements really optional?

0 Answers  


What are disadvantages of C language.

0 Answers   iNautix,


Why do we use & in c?

0 Answers  


What is c value paradox explain?

0 Answers  


How many parameters should a function have?

0 Answers  


Write the following function in C. stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.

4 Answers   OpenFeel,


general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only

0 Answers  


Categories