print ur name without using any semicolon in c/c++....
Answer Posted / madhu
This is the correct answer,
Question is without using semicolon,
#include<stdio.h>
int main()
{
if(printf("Madhu"))
{
}
}
| Is This Answer Correct ? | 87 Yes | 12 No |
Post New Answer View All Answers
What is the use of the function in c?
What is static identifier?
What is assignment operator?
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
Why is #define used?
How can you convert integers to binary or hexadecimal?
What is the advantage of a random access file?
How we can insert comments in a c program?
What are linked lists in c?
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
Synonymous with pointer array a) character array b) ragged array c) multiple array d) none
How would you rename a function in C?
What is the difference between malloc() and calloc() function in c language?
`write a program to display the recomended action depends on a color of trafic light using nested if statments
how to build a exercise findig min number of e heap with list imlemented?