What is the maximum length of an identifier?
No Answer is Posted For this Question
Be the First to Post Answer
struct node {struct node*temp,*new} prinf("%d",sizeof(struct node));
What are dangling pointers in c?
What should malloc() do?
what is c?
what is the use of ‘auto’ keyword?
Which of the following are valid "include" formats? A)#include and #include[file.h] B)#include (file.h) and #include C)#include [file.h] and #include "file.h" D)#include <file.h> and #include "file.h"
the format specified for hexa decimal is a.%d b.%o c.%x d.%u
What is the use of sizeof?
how to add our own function in c library please give details.?
What does c value mean?
Declare the structure which contains the following members and write in C list of all students who score more than 75 marks. Roll No, Name, Father Name, Age, City, Marks.
Describe how arrays can be passed to a user defined function