Write a program to generate the Fibinocci Series
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between struct and typedef struct in c?
What are the similarities between c and c++?
There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
Explain how can you tell whether two strings are the same?
How can I change their mode to binary?
What are bitwise shift operators in c programming?
Can i use “int” data type to store the value 32768? Why?
What is true about the following C Functions (a) Need not return any value (b) Should always return an integer (c) Should always return a float (d) Should always return more than one value
Average of a couple 10 years ago was 25. The average remains same after having a child and twins after 3 years. What is the present age of the first child
Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
Explain modulus operator.