c program to print a name without using semicolon
Answer Posted / subash
main()
{
if(printf("SATYA"))
{
}
}
Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Explain a file operation in C with an example.
Explain what are header files and explain what are its uses in c programming?
write a program to find the given number is prime or not
How can I manipulate strings of multibyte characters?
What is a header file?
Explain what will be the outcome of the following conditional statement if the value of variable s is 10?
How to compare array with pointer in c?
What is dynamic memory allocation?
What are identifiers in c?
What are runtime error?
What is the scope of local variable in c?
What is multidimensional arrays
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
What is a union?
What are the difference between a free-standing and a hosted environment?