Explain the priority queues?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what is a program flowchart and explain how does it help in writing a program?
Why data types in all programming languages have some range? Why ritche have disigned first time likethat?Why not a single data type can support all other types?
15.what is the disadvantage of using macros? 16.what is the self-referential structure? 17.can a union be self-referenced? 18.What is a pointer? 19.What is the Lvalue and Rvalue? 20.what is the difference between these initializations? 21.Char a[]=”string”; 22.Char *p=”literal”; 23.Does *p++ increment p, or what it points to?
In C program, at end of the program we will give as "return 0" and "return 1", what they indicate? Is it mandatory to specify them?
What is the meaning of typedef struct in c?
Is this program statement valid? INT = 10.50;
Differentiate between ordinary variable and pointer in c.
Do you have any idea how to compare array with pointer in c?
Write the following function in C. stripos — Find position of first occurrence of a case- insensitive string int stripos ( char* haystack, char* needle, int offset ) Returns the numeric position of the first occurrence of needle in the haystack string. Note that the needle may be a string of one or more characters. If needle is not found, stripos() will return -1. The function should not make use of any C library function calls.
Discuss the function of conditional operator, size of operator and comma operator with examples.
If null and 0 are equivalent as null pointer constants, which should I use?
Which is better oop or procedural?