What is extern keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the description for syntax errors?
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
Explain what will the preprocessor do for a program?
How many bytes are occupied by near, far and huge pointers (dos)?
What is the difference between null pointer and void pointer
10 Answers CTS, Manforce, MAQ Software,
What is the difference between NULL and NUL?
What is the output of the following program #include<stdio.h> main() { int i=0; fork(); printf("%d",i++); fork(); printf("%d",i++); fork(); wait(); }
How can I read a directory in a C program?
2 Answers Bright Outdoor, Wipro,
In c language can we compile a program without main() function?
SRUCTURE PROGRAMMING
void main() {int i=2; printf("%d%d%d",i,++i,i++); getch(); }
a linear linked list such that the link field of its last node points to the first node instead of containing NULL a) linked list b) circular linked list c) sequential linked list d) none