without a terminator how can we print a message in a printf
() function.
Answer Posted / lucky
#include<stdio.h>
void main()
{
if(printf("hello")==0)
{}
}
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
Write a simple code fragment that will check if a number is positive or negative.
Which is more efficient, a switch statement or an if else chain?
in iso what are the common technological language?
how to print the character with maximum occurence and print that number of occurence too in a string given ?
What are the benefits of organizational structure?
How can you pass an array to a function by value?
Write the test cases for checking a variable having value in range -10.0 to +10.0?
Explain the difference between malloc() and calloc() in c?
What is a loop?
Why main function is special give two reasons?
How can I open a file so that other programs can update it at the same time?
Explain how are 16- and 32-bit numbers stored?
A global variable when referred to in another file is declared as this a) local variable b) external variable c) constant d) pointers
What does sizeof return c?