Can you explain what keyboard debouncing is, and where and
why we us it?
please give some examples
No Answer is Posted For this Question
Be the First to Post Answer
implement OR gate without using any bitwise operator.
Difference between constant pointer and pointer to a constant.
Can the “if” function be used in comparing strings?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
2 Answers Aricent, Manipal University,
Differentiate between new and malloc(), delete and free() ?
void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }
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; }
if function is declared as static in one source file, if I would like to use the same function in some other source file...is it possible....how ?
proc() { static i=10; printf("%d",i); } If this proc() is called second time, what is the output?
why return type of main is not necessary in linux
How many levels of pointers have?
c program to subtract between two numbers without using '-' sign and subtract function.