What is function what are the types of function?
No Answer is Posted For this Question
Be the First to Post Answer
What is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
how will you write a program on linked lists using JAVA programming???????????
Explain what does a function declared as pascal do differently?
what information does the header files contain?
6 Answers BSNL, Cisco, GDA Technologies,
Can a pointer point to null?
Which is not valid in C? 1) class aClass{public:int x;} 2) /* A comment */ 3) char x=12;
When is a null pointer used?
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”.
In c language can we compile a program without main() function?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
pgm to reverse string using arrays i.e god is love becomes love is god) (assumption:only space is used for seperation of words) no addtional memory used.i.e no temporary arrays can used.
int j =15,i; for (i=1; 1<5; ++i) {printf ("%d%d ",j,i); j = j-3; }