What does the function toupper() do?
No Answer is Posted For this Question
Be the First to Post Answer
Where register variables are stored in c?
What is sparse file?
How is null defined in c?
What is true about the following C Functions (a) Need not return any value (b) Should always return an integer (c) Should always return a float (d) Should always return more than one value
Describe the steps to insert data into a singly linked list.
Why is extern used in c?
What does p mean in physics?
Explain in detail how strset (string handling function works )pls explain it with an example.
Hai sir, I had planned to write the NIC scientific engineer exam , plz post the sample question......
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the maximum number of concurrent threads that the InnoDB plug-in can create.
How will you write a code for accessing the length of an array without assigning it to another variable?
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;