Home
Apple
iPhone
Computing
Tech
Social
Tips & Tricks
21:03
C -Programming
,
Computing
Write a Program in C to display a message without using semi colon anywhere in Program.
Solution: 1
void main
()
{
if
(printf(
"Loser Engineer"
))
{}
}
Solution: 2
void main
()
{
while
(!printf(
"
Loser Engineer
))
{}
}
Solution: 3
void main
()
{
switch
(printf(
"
Loser Engineer
"
))
{}
}