write a program fibonacci series and palindrome program in c
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of function in c?
List out few of the applications that make use of Multilinked Structures?
What is the difference between break and continue?
What is the explanation for the dangling pointer in c?
What are the advantages of using macro in c language?
What is the difference between struct and union in C?
What are comments and how do you insert it in a C program?
What is structure padding ?
write a program to check whether a number is Peterson or not.
Given an array of characters, how would you reverse it? How would you reverse it without using indexing in the array?
write the program to find multiplication of 2-D matrix??????????
. Consider the following program main() { int a[5]={1,3,6,7,0}; int *b; b=&a[2]; } The value of b[-1] is (A) 1 (B) 3 (C) -6 (D) none