write a c program to print "Welcome" without using semicolon
in the whole program ??
Answer Posted / rama krishna sidhartha
main()
{
if(printf("Welcome"))
{
}
}
(OR)
main()
{
if(printf("Welcome"))
}
| Is This Answer Correct ? | 13 Yes | 5 No |
Post New Answer View All Answers
What are the features of c language?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
What is hashing in c?
Can you pass an entire structure to functions?
Explain do array subscripts always start with zero?
What is difference between %d and %i in c?
What does %d do?
What does %p mean c?
Can a pointer be static?
Write a program to reverse a given number in c language?
Why static variable is used in c?
Write a program to generate the Fibinocci Series
write a program to print data of 5 five students with structures?
What is break in c?
What is assert and when would I use it?