who invented c
Answers were Sorted based on User's Feedback
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
What does %2f mean in c?
What does node * mean?
why programming language C is still used in operating system's kernel??
Rapunzel walks into the forest of forgetfullness. She meets a Lion who lies on Monday Tuesdays and Wednesdays and meets a rabbit who lies on Thurs fridays and saturdays . On that day both say that "I lied yesterday". What day is it .
a value that does not change during program execution a) variabe b) argument c) parameter d) none
main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }
What is the difference between volatile and const volatile?
What is the difference between array and structure in c?
Write a program that can show the multiplication table.
What is the c language function prototype?
Why is not a pointer null after calling free?