how do you programme Carrier Sense Multiple Access
No Answer is Posted For this Question
Be the First to Post Answer
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
What are header files why are they important?
List some of the static data structures in C?
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
How can I do serial ("comm") port I/O?
output for following code??? main() { int x=2,y,z; x*=3+2; printf("1.%d\n",x); x*=y=z=4; printf("2.%d %d %d\n",x,y,z); x=y==z; printf("3.%d\n",x); x==(y=z); printf("%d",x); }
Function calling procedures? and their differences? Why should one go for Call by Reference?
Explain what are the __date__ and __time__ preprocessor commands?
Software Interview Questions
Are local variables initialized to zero by default in c?
There are 8 billiard balls, and one of them is slightly heavier, but the only way to tell was by putting it on a weighing scale against another. What's the fewest number of times you'd have to use the scale to find the heavier ball?
What is the purpose of the code, and is there any problem with it? unsigned int f( unsigned n ) { return –n & 7; }