How can I do serial ("comm") port I/O?
No Answer is Posted For this Question
Be the First to Post Answer
What is the restrict keyword in C?
Explain how do you use a pointer to a function?
What is maximum size of array in c?
c pgm count no of lines , blanks, tabs in a para(File concept)
What will be printed as the result of the operation below: #include<..> int x; int modifyvalue() { return(x+=10); } int changevalue(int x) { return(x+=1); } void main() { int x=10; x++; changevalue(x); x++; modifyvalue(); printf("First output:%d\n",x); x++; changevalue(x); printf("Second output:%d\n",x); modifyvalue(); printf("Third output:%d\n",x); }
what are bps & baud rates? differentiate these two?
write a program to display all prime numbers
how to calculate the time complexity of a given algorithm? pls give exaples..mainly for the coplexities such as O(log n),O(n log n)...
Why do we write return 0 in c?
Why string is used in c?
What is a class?
Explain what does it mean when a pointer is used in an if statement?