c program to print a name without using semicolon

Answer Posted / s

main()
{
if(printf("SIVAN RAJA C"))
{
}
}

Is This Answer Correct ?    19 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions

632


Which header file is used for clrscr?

571


Why use int main instead of void main?

590


pgm to find number of words starting with capital letters in a file(additional memory usage not allowed)(if a word starting with capital also next letter in word is capital cann't be counted twice)

1855


what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above

667






Is struct oop?

576


What is structure in c definition?

568


Explain what is the purpose of "extern" keyword in a function declaration?

613


process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,

1887


Where define directive used?

598


What are qualifiers and modifiers c?

540


Explain what are multidimensional arrays?

596


What is the difference between declaring a variable and defining a variable?

716


What is typeof in c?

601


we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?

802