why we are using semicolon at the end of printh statment
Answers were Sorted based on User's Feedback
Answer / sri
every statement must be end with semicolon.so We use
semicolon.
| Is This Answer Correct ? | 5 Yes | 22 No |
Find greatest number out of 10 number without using loop.
Where are the auto variables stored?
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 right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
how to write hello word without using semicolon at the end?
What is call by reference in functions?
Why can arithmetic operations not be performed on void pointers?
explain what is fifo?
What is wrong with this code?
Define Spanning-Tree Protocol (STP)
What is file in c language?
Is void a keyword in c?