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
In C, What is the #line used for?
What is modifier & how many types of modifiers available in c?
What is the difference between typedef and #define?
How does normalization of huge pointer works?
a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above
What is function prototype in c with example?
What is pointer to pointer in c?
What is bubble sort technique in c?
What is the use of f in c?
What are different types of pointers?
What is a static variable in c?
Can you write a programmer for FACTORIAL using recursion?
What is the purpose of the preprocessor directive error?
What is volatile, register definition in C
Define Array of pointers.