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


Please Help Members By Posting Answers For Below Questions

What is getch?

625


why return type of main is not necessary in linux

1697


What kind of structure is a house?

549


Is there sort function in c?

572


What do you mean by c what are the main characteristics of c language?

564






Are global variables static in c?

666


What is the use of gets and puts?

594


What are the general description for loop statement and available loop types in c?

679


find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }

1855


What is function and its example?

621


What is break in c?

579


What is variable declaration and definition in c?

493


What is wrong with this code?

688


Explain what is the advantage of a random access file?

652


Who invented bcpl language?

698