What does the characters “r” and “w” mean when writing programs that will make use of files?
No Answer is Posted For this Question
Be the First to Post Answer
How does free() know explain how much memory to release?
What is the auto keyword good for?
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
What is an object?
What is NULL pointer?
write a program that eliminates the value of mathematical constant e by using the formula e=1+1/1!+1/2!+1/3!+
What is meant by gets in c?
How would you obtain the current time and difference between two times?
4.A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
How to find the given no is odd or even without checking of any condition and loops. (Hint: Using array)
IS it possible to define a zero sized array in c.if it is possible how can the elements of that array can be accessed.array index starts from zero,if it is possible to define zero sized array how can be its first element can be accesseed.