What is break statement?
No Answer is Posted For this Question
Be the First to Post Answer
What are the two types of functions in c?
Does c have an equivalent to pascals with statement?
what is the need for main function in c?
What is the acronym for ansi?
Wt are the Buses in C Language
prototype of sine function.
What is the difference between declaring a variable and defining a variable?
What is #pragma directive?how it is used in the program? what is its advantages and disadvantages?
what does keyword ‘extern’ mean in a function declaration?
What is the size of a union variable?
Write a program that accepts a string where multiple spaces are given in between the words. Print the string ignoring the multiple spaces. Example: Input: “ We Are Student “ Output: "We Are Student"
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