Write a program that an operator and two operands read from input operand operator on the implementation and results display.
Write a program to generate a pulse width frequency of your choise,which can be variable by using the digital port of your processor
What is void main () in c?
Explain the difference between strcpy() and memcpy() function?
What is the output of printf("%d", printf("Hello"));?
how to find out the union of two character arrays?
What is pointer to pointer in c with example?
Is javascript based on c?
what is the difference b/w compiler and debugger?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
Write a program which returns the first non repetitive character in the string?
Evaluate the following: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); 1) 10 2) 11 3) 1
Why is c fast?