What is restrict keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
using for loop sum 2 number of any 4 digit number in c language
What does c mean?
What are the advantages of Macro over function?
What does double pointer mean in c?
What is data structure in c and its types?
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;
to get a line of text and count the number of vowels in it
can we access one file to one directory?
What is structure padding & expalain wid example what is bit wise structure?
Expand the following LKB BKL FFG
int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
What does typedef struct mean?