write c program without semicolon
Answer Posted / saurabh rakhecha
int main()
{
if (printf(" Hello"))
{
// EMPTY
}
}
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
Explain how does free() know explain how much memory to release?
What is methods in c?
Is it better to bitshift a value than to multiply by 2?
Explain a file operation in C with an example.
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
Why is a semicolon (;) put at the end of every program statement?
Do string constants represent numerical values?
How can I read data from data files with particular formats?
Where we use clrscr in c?
Can we declare variables anywhere in c?
What are the back slash character constants or escape sequence charactersavailable in c?
Explain low-order bytes.
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
What is the difference between malloc() and calloc()?