How to print "Hi World" without using semi colon?
Answer Posted / manoj singh
void main()
{
clrscr();
if(printf(""HI World""))
getch();
}
| Is This Answer Correct ? | 2 Yes | 6 No |
Post New Answer View All Answers
Is c is a middle level language?
What is optimization in c?
What is difference between arrays and pointers?
How old is c programming language?
What is structure in c definition?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
What is the size of empty structure in c?
Is that possible to store 32768 in an int data type variable?
What is an arrays?
What does return 1 means in c?
What are type modifiers in c?
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(); }
Explain how can I pad a string to a known length?
When was c language developed?
Explain can you assign a different address to an array tag?