When is a “switch” statement preferable over an “if” statement?
No Answer is Posted For this Question
Be the First to Post Answer
Which is best book for data structures in c?
What is the significance of scope resolution operator?
0 Answers Agilent, ZS Associates,
program to locate string with in a string with using strstr function
When should the const modifier be used?
What does the function toupper() do?
how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12
Can you think of a logic behind the game minesweeper.
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer
Explain what is the difference between null and nul?
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
What does %d do in c?
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;