which type of aspect you want from the student.
No Answer is Posted For this Question
Be the First to Post Answer
who is the father of c
What should be keep precautions while using the recursion method?
What are the types of pointers in c?
whenever a question is posted in a particular category in allinterview.com, Is there any facility to receive an indication mail. For eg: I need to receive an indication email, whenever a question is posted under the category “C Langauage”.
What is the difference between procedural and declarative language?
which will return integer? a) int*s ( ) b) ( int* ) s( ) c) int ( *s ) ( )
Which built-in library function can be used to match a patter from the string?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
struct abc { unsigned int a; char b; float r; }; struct xyz { int u; struct abc tt; }ww; ww = (struct xyz*)malloc(sizeof(struct xyz)); will the memory be allocated for the inner structure also?
ATM machine and railway reservation class/object diagram
how to impliment 2 or more stacks in a single dimensional array ?
What is an anonymous union and where to apply that ?