How can I access an I o board directly?
No Answer is Posted For this Question
Be the First to Post Answer
Write a programe print the sum of series 0,1,2,.....10
wap in c to accept n number display the highest and lowest value
Reverse a string word by word??
Write a program to print distinct words in an input along with their count in input in decreasing order of their count..
What is the use of getch ()?
Sir i want e-notes of C languge of BAlaguruswami book i.e scanned or pdf file of balaguruswamy book on c language.PLEASE SEND ME on my mail id ajit_kolhe@rediff.com
Can we compile a program without main() function?
State the difference between realloc and free.
If "AaBbCc" is passed to the char char x(*a) { a[0]?x(a+1):1; printf("%c",a[0]); return 1; } what will be the output?
A routine usually part of the operation system that loads a program into memory prior to execution a) linker b) loader c) preprocessor d) compiler
What is local and global variable in c?
What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }