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


Please Help Members By Posting Answers For Below Questions

What are the different categories of functions in c?

914


Do you know pointer in c?

842


Can we assign integer value to char in c?

867


how to build a exercise findig min number of e heap with list imlemented?

1875


What are the 32 keywords in c?

882


What is modeling?

845


Write a code of a general series where the next element is the sum of last k terms.

845


What is null character in c?

917


Explain what does the function toupper() do?

852


How can I read and write comma-delimited text?

864


in any language the sound structure of that language depends on its a) character set, input/output function, its control structures b) character set, library functions, input/output functions its control structures c) character set, library functions, control sturctures d) character set, operators, its control structures

958


What is a pointer and how it is initialized?

864


Explain the use of #pragma exit?

942


What is the difference between printf and scanf )?

833


cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration

900