write a c program to print "Welcome" without using semicolon
in the whole program ??
Answer Posted / kinjal gor
main()
{
CLRSCR();
if(printf("I LOVE MY INDIA"))
GETCH();
}
| Is This Answer Correct ? | 1 Yes | 4 No |
Post New Answer View All Answers
Explain how can I prevent another program from modifying part of a file that I am modifying?
What does nil mean in c?
what is bit rate & baud rate? plz give wave forms
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(); }
When I tried to go into a security sites I am denied access and a message appeared saying 'applet not initialize'. How can I rectify this problem.
What do mean by network ?
If fflush wont work, what can I use to flush input?
Do you know what are bitwise shift operators in c programming?
Is main is user defined function?
explain what is a newline escape sequence?
What are the scope of static variables?
What is your stream meaning?
What is a char in c?
How are 16- and 32-bit numbers stored?
a parameter passed between a calling program and a called program a) variable b) constant c) argument d) all of the above