How to print "Hi World" without using semi colon?
Answer Posted / ankit choudhary
void main()
{
clrscr();
if(printf("\nHi World"))
getch();
}
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
Mention four important string handling functions in c languages .
Explain how do I determine whether a character is numeric, alphabetic, and so on?
What is sizeof return in c?
Explain the meaning of keyword 'extern' in a function declaration.
Explain Basic concepts of C language?
What is the difference between far and near ?
using only #include
What is #include stdio h?
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
What is malloc calloc and realloc in c?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
Write a program to swap two numbers without using a temporary variable?
What is logical error?
An instruction which is analysed and acted upon by the processor prior to the compiler going its work a) directive b) constructive c) constant d) absolute mode