Is return a keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a program of palindrome(madam=madam) using pointer?
What does struct node * mean?
What are the advantages of the functions?
What is the purpose of the statement: strcat (S2, S1)?
N O S I E R + A S T R A L ---------------- 7 2 5 6 1 3
Define a structure to store the record of library. The record must consist of at least following fields: Title, Author, Edition, Price, Publisher, and Category. -Define functions authorSearch ( ), TitleSearch ( ) and CategorySearch ( ) to search a book with respect to author, title and category. [There can be more than one book, written by one author, in one category]
a linear linked list such that the link field of its last node points to the first node instead of containing NULL a) linked list b) circular linked list c) sequential linked list d) none
What is the scope of static variables?
What is a Deque?
can we declare a variable in different scopes with different data types? answer in detail
What is an array in c?
What is the output of the following progarm? #include<stdio.h> main( ) { int x,y=10; x=4; y=fact(x); printf(ā%d\nā,y); } unsigned int fact(int x) { return(x*fact(x-1)); } A. 24 B. 10 C. 4 D. none