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
How is a null pointer different from a dangling pointer?
What is && in c programming?
What is the difference between the local variable and global variable in c?
Define Array of pointers.
What are the salient features of c languages?
Do pointers store the address of value or the actual value of a variable?
What is a built-in function in C?
What is the difference between ++a and a++?
Who is the main contributor in designing the c language after dennis ritchie?
how to print the character with maximum occurence and print that number of occurence too in a string given ?
an expression contains relational operators, assignment operators, and arithmatic operstors. In the absence of parentheses, they will be evaluated in which of the following order a) assignment, relational, arithematic b) arithematic, relational, assignment c) relational, arithematic, assignment d) assignment, arithematic, relational
What is c programming structure?
What are global variables?
Discuss the function of conditional operator, size of operator and comma operator with examples.
How do you view the path?