write a c program to print "Welcome" without using semicolon
in the whole program ??
Answer Posted / upendra
main()
{
if(printf("welcome"))
}
}
]
| Is This Answer Correct ? | 0 Yes | 5 No |
Post New Answer View All Answers
What is the purpose of & in scanf?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
Are the expressions * ptr ++ and ++ * ptr same?
what do you mean by inline function in C?
What could possibly be the problem if a valid function name such as tolower() is being reported by the C compiler as undefined?
What is the use of a static variable in c?
Which programming language is best for getting job 2020?
What are the disadvantages of a shell structure?
largest Of three Number using without if condition?
What are the difference between a free-standing and a hosted environment?
Are c and c++ the same?
Is main a keyword in c?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
What is the purpose of main( ) in c language?