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 can I implement sets or arrays of bits?
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
Is c still used?
How can I read data from data files with particular formats?
What does double pointer mean in c?
Explain how can I read and write comma-delimited text?
What is the difference between break and continue?
which of the following shows the correct hierarchy of arithmetic operations in C a) (), **, * or/,+ or - b) (),**,*,/,+,- c) (),**,/,*,+,- d) (),/ or *,- or +
Difference between MAC vs. IP Addressing
c program for searching a student details among 10 student details
Is c is a low level language?
What is the difference between text and binary modes?
What is static memory allocation?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
What are qualifiers?