What is the g value paradox?
No Answer is Posted For this Question
Be the First to Post Answer
program to find which character is occured more times in a string and how many times it has occured? for example in the sentence "i love india" the output should be i & 3.
What are the properties of union in c?
Which of the Following will define a type NODE that is a node in a Linked list? A)struct node {NODE*next;int x;};type def struct node NODE; B)typedef struct NODE {struct NODE *next;int x;}; C)typedef struct NODE {NODE *next;int x;}; D)typedef struct {NODE *next;int x;}NODE;
which is faster execution: loops or recursion?
diff. between *p and **p
Explain the difference between null pointer and void pointer.
How do you list a file’s date and time?
What does 2n 4c mean?
a simple c program using 'for' loop to display the output 5 4 3 2 1
the operator for exponencation is a.** b.^ c.% d.not available
What is array of structure in c?
What is function in c with example?