c program to print a name without using semicolon
Answer Posted / amegha
main()
{
if(printf("AMEGHA")
{
}
}
| Is This Answer Correct ? | 36 Yes | 17 No |
Post New Answer View All Answers
What is an auto variable in c?
Here is a good puzzle: how do you write a program which produces its own source code as output?
Hai sir, I had planned to write the NIC scientific engineer exam , plz post the sample question......
Explain is it better to bitshift a value than to multiply by 2?
When I set a float variable to, say, 3.1, why is printf printing it as 3.0999999?
A function can make the value of a variable available to another by a) declaring the variable as global variable b) Passing the variable as a parameter to the second function c) Either of the two methods in (A) and (B) d) binary stream
What is maximum size of array in c?
Create a simple code fragment that will swap the values of two variables num1 and num2.
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
What is a memory leak? How to avoid it?
What is difference between && and & in c?
Simplify the program segment if X = B then C ← true else C ← false
Write a program to swap two numbers without using third variable in c?
Why do we need a structure?
What is a global variable in c?