How can I make a program in c to print 'Hello' without
using semicolon in the code?
Answer Posted / arvind kumar
int main()
{
while(printf("Arvind kumar C-DAC"))
{
}
return 0;
}
| Is This Answer Correct ? | 8 Yes | 4 No |
Post New Answer View All Answers
What do mean by network ?
Why is c called c not d or e?
Explain what are reserved words?
Describe the header file and its usage in c programming?
What is null in c?
Create a structure to specify data on students as given below: Roll number, Name, Department, Course, and Year of joining. Assume that there are not more than 450 students in the collage. (a) Write a function to print the names of all students who joined in the last 3 years. (b) Write a function to print the data of a student whose roll numbers are divisible by 4.
the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none
Is stack a keyword in c?
What is the difference between call by value and call by reference in c?
Can a variable be both const and volatile?
What is #include stdio h and #include conio h?
If you know then define #pragma?
What is the time and space complexities of merge sort and when is it preferred over quick sort?
Does free set pointer to null?
Explain what is the benefit of using const for declaring constants?