What is pointers in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is meant by 'bit masking'?
Given an array of length N containing integers between 1 and N, determine if it contains any duplicates.
What is %g in c?
fn f(x) { if(x<=0) return; else f(x-1)+x; }
What is Dynamic memory allocation in C? Name the dynamic allocation functions.
what are far pointers?
c pgm count no of lines , blanks, tabs in a para(File concept)
which one is not preprocessor directive a)#if b)#elif c)#undef d)#pragma
16 Answers Accenture, Infosys, TCS, Wipro,
What are the 5 types of organizational structures?
Do you know null pointer?
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;
What is the use of sizeof?