Answer Posted / computer operator
dennis ritchi
| Is This Answer Correct ? | 4 Yes | 3 No |
Post New Answer View All Answers
What is structure padding and packing in c?
What is c definition?
Explain goto?
What are # preprocessor operator in c?
How can I manipulate individual bits?
What are the uses of a pointer?
What does c mean?
How are 16- and 32-bit numbers stored?
What is sizeof return in c?
How can you call a function, given its name as a string?
Write a function which takes as parameters one regular expression(only ? and * are the special characters) and a string and returns whether the string matched the regular expression.
Write a program to swap two numbers without using a temporary variable?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
Can you write a programmer for FACTORIAL using recursion?
What are near, far and huge pointers?