what does ‘segmentation violation’ mean?
value = 0xabcd; for (loop = 1; (value >> 1) & 1 | loop & 1; loop++) { foo(); if (loop & 1) value >>= 1; } how many times is foo() executed?
Tell me with an example the self-referential structure?
what is the maximum no. of bytes calloc can allocate
What are the types of type specifiers?
What is a structure in c language. how to initialise a structure in c?
6. Which of the Following is not defined in string.h? A)strspn() B)strerror() C)memchr() D)strod()
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
What is static and auto variables in c?
1.write a program to merge the arrays 2.write efficient code for extracting unique elements from a sorted list of array?
What is the advantage of using #define to declare a constant?
0 Answers Agilent, ZS Associates,
An expression to whose value an operater is applied a) operand b) variable c) constant d) all of the above
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above