What is a lvalue
No Answer is Posted For this Question
Be the First to Post Answer
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
Why C language is a procedural language?
What are the __date__ and __time__ preprocessor commands?
When should the volatile modifier be used?
What is an identifier?
What does c mean?
write a program to search for an element in a given array. If the array was found then display its position otherwise display appropriate message in c language
Given an array of length N containing integers between 1 and N, determine if it contains any duplicates.
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
44.what is the difference between strcpy() and memcpy() function? 45.what is output of the following statetment? 46.Printf(“%x”, -1<<4); ? 47.will the program compile? int i; scanf(“%d”,i); printf(“%d”,i); 48.write a string copy function routine? 49.swap two integer variables without using a third temporary variable? 50.how do you redirect stdout value from a program to a file? 51.write a program that finds the factorial of a number using recursion?
What is #ifdef ? What is its application?
How will you allocate memory to a double pointer ?