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
When the macros gets expanded?
What is the general form of #line preprocessor?
Why ca not I do something like this?
How can you increase the size of a statically allocated array?
Write a program for finding factorial of a number.
What is strcpy() function?
What is printf () in c?
What is c language & why it is used?
Explain how are portions of a program disabled in demo versions?
How can a process change an environment variable in its caller?
write a program in C that prompts the user for today's date,tomorrow's date and display the results.Use structures for today's date,tomorrow's date and an array to hold the days for each month of the year.
In this problem you are to write a program that will cut some number of prime numbers from the list of prime numbers between 1 and N.Your program will read in a number N; determine the list of prime numbers between 1 and N; and print the C*2 prime numbers from the center of the list if there are an even number of prime numbers or (C*2)-1 prime numbers from the center of the list if there are an odd number of prime numbers in the list.
What is chain pointer in c?
Explain the binary height balanced tree?
What is getch?