c program to print a name without using semicolon
Answer Posted / amehga
main()
{
if(printf("AMEGHA"))
{
}
}
| Is This Answer Correct ? | 56 Yes | 5 No |
Post New Answer View All Answers
What is pragma c?
What is array in c with example?
What is modeling?
Why does everyone say not to use scanf? What should I use instead?
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 the use of function in c?
how should functions be apportioned among source files?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
In a switch statement, what will happen if a break statement is omitted?
Write a program to know whether the input number is an armstrong number.
how to create duplicate link list using C???
Explain the difference between malloc() and calloc() in c?
What are the types of pointers?
Is boolean a datatype in c?
Explain how can you tell whether a program was compiled using c versus c++?