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
Write a code to achieve inter processor communication (mutual exclusion implementation pseudo code)?
to find the closest pair
What is the explanation for cyclic nature of data types in c?
What is difference between function overloading and operator overloading?
What is a good data structure to use for storing lines of text?
Explain about C function prototype?
How can you determine the maximum value that a numeric variable can hold?
Write the program with at least two functions to solve the following problem. The members of the board of a small university are considering voting for a pay increase for their 10 faculty members. They are considering a pay increase of 8%. Write a program that will prompt for and accept the current salary for each of the faculty members, then calculate and display their individual pay increases. At the end of the program, print the total faculty payroll before and after the pay increase, and the total pay increase involved.
Is c procedural or functional?
Which of these functions is safer to use : fgets(), gets()? Why?
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
Is that possible to add pointers to each other?
What are the different types of data structures in c?
Why cant I open a file by its explicit path?
Is stack a keyword in c?