How can I do serial ("comm") port I/O?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Explain the difference between malloc() and calloc() function?

0 Answers  


What are register variables in c?

0 Answers  


In a header file whether functions are declared or defined?

0 Answers   TISL,


What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }

2 Answers  


How many data structures are there in c?

0 Answers  






Write a C Programm.. we press 'a' , it shows the albhabetical number is 1, if we press 'g' it shows the answer 7.. any can help me

7 Answers  


How can we open a file in Binary mode and Text mode?what is the difference?

1 Answers   PanTerra,


what is the difference between const volatile int i & volatile const int j;

2 Answers   HCL,


how to find out the union of two character arrays?

2 Answers  


Subtract Two Number Without Using Subtraction Operator

0 Answers  


What is page thrashing?

0 Answers  


Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV

5 Answers   Accenture,


Categories