How can I do serial ("comm") port I/O?
No Answer is Posted For this Question
Be the First to Post Answer
FORMATTED INPUT/OUTPUT functions are a) scanf() and printf() b) gets() and puts() c) getchar() and putchar() d) all the above
#define f(x) main() { printf("\n%d",f(2+2)); }
compute the nth mumber in the fibonacci sequence?
10 Answers Canon, HPL, Satyam, TCS,
Which driver is a pure java driver
change to postfix a/(b+c*d-e)
Can two or more operators such as and be combined in a single line of program code?
When c language was developed?
What is a stream in c programming?
44.what is the difference between strcpy() and memcpy() function? 45.what is output of the following statetment? 46.Printf(“%x”, -1<<4); ? 47.will the program compile? int i; scanf(“%d”,i); printf(“%d”,i); 48.write a string copy function routine? 49.swap two integer variables without using a third temporary variable? 50.how do you redirect stdout value from a program to a file? 51.write a program that finds the factorial of a number using recursion?
what is difference between array of characters and string
Is main an identifier in c?
main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Find the Outputs?