"%u" unsigned integer print the
a) address of variable
b) value of variable
c) name of a variable
d) none of the above
what are the various memory handling mechanisms in C ?
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
What is the scope of static variable in c?
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
WAP to accept basic salary of an employee? Calculate it HRA=25%,DA=30%,PF=30%&net salary display all contents?
6 Answers Finite Infotech, Lovely Professional University, Wipro,
Can you write the algorithm for Queue?
0 Answers College School Exams Tests, TCS,
What is meant by realloc()?
What are the advantages of c preprocessor?
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
array of pointer pointer to array pointer to pointer
Why do we use namespace feature?
What is c language in simple words?