What are the types of data structures in c?
No Answer is Posted For this Question
Be the First to Post Answer
C program code 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
Explain how can I open a file so that other programs can update it at the same time?
What are bit fields? What is their use?
What is a null pointer in c?
WHAT IS MAXIMUM SIZE OF AN ARRAY IN C LANGUAGE?
8 Answers Carphone Warehouse, IBM, SAS,
program to find the roots of a quardratic equation
What is difference between structure and union in c?
What is the condition that is applied with ?: Operator?
can we declare a function inside the structure? ex: struct book { int pages; float price; int library(int,float); }b; is the above declaration correct? as it has function declaration?
a program that performs some preliminary processing in C, it acts upon certain directives that will affect how the compiler does its work a) compiler b) loader c) directive d) preprocessor
What is an expression?
main() { static int ivar=5; printf("%d",ivar--); if(ivar) main(); }