write c program without semicolon
Answer Posted / srikanth
int main()
{
if(printf("hello")
{
}
getch();
}
| Is This Answer Correct ? | 13 Yes | 25 No |
Post New Answer View All Answers
Explain the use of 'auto' keyword in c programming?
How can I ensure that integer arithmetic doesnt overflow?
In C language, a variable name cannot contain?
What is the difference between specifying a constant variable like with constant keyword and #define it? i.e what is the difference between CONSTANT FLOAT A=1.25 and #define A 1.25
What is main return c?
What are keywords in c with examples?
What is ## preprocessor operator in c?
What is the translation phases used in c language?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
When is a “switch” statement preferable over an “if” statement?
Write an efficient algo and C code to shuffle a pack of cards.. this one was a feedback process until we came up with one with no extra storage.
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
What is time complexity c?
What are the disadvantages of external storage class?
What is indirection in c?