How to print "I Love My India" without using semi colon?
Answer Posted / sanjay
On VC++ and on Unix. Dont use getch();
as it was clearly mentioned for not to use ;
#include<stdio.h>
main()
{
if(printf("I love my India"))
}
| Is This Answer Correct ? | 8 Yes | 1 No |
Post New Answer View All Answers
How can I write data files which can be read on other machines with different word size, byte order, or floating point formats?
Do pointers need to be initialized?
How do you define a string?
How is pointer initialized in c?
why programs in c are running with out #include
What is a class c rental property?
What is c language used for?
What is identifier in c?
How can I determine whether a machines byte order is big-endian or little-endian?
#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }
What is #pragma statements?
What is #include conio h?
What is a constant?
Is void a keyword in c?
Explain what is the advantage of a random access file?