How to add two numbers without using semicolon at runtime
Answer Posted / snehal sawant
#include<stdio.h>
void main()
{
while(!printf("11+20= %d ",11+20))
{
}
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
shorting algorithmS
in iso what are the common technological language?
What are the ways to a null pointer can use in c programming language?
What are the usage of pointer in c?
How can you determine the size of an allocated portion of memory?
What is the use of ?
why use "return" statement a) on executing the return statement it immediately transfers the control back to the calling program b) it returns the value present in the parentheses return, to the calling program c) a & b d) none of the above
The difference between printf and fprintf is ?
2) Write a program that will help Air Traffic Control for an airport to view the sequence of flights ready for take-off. The airport can accommodate 10 flights waiting for take-off at any point in time. Each flight has a unique 3 digit numeric identifier. Each time a flight takes-off, Air Traffic Control adds a flight to the waitlist. Each time a flight is added to the waitlist, the list of flights waiting to take-off must be displayed. When a flight is cleared for take-off, Air Traffic Control removes the flight from the waitlist. Each time a flight takes-off, the list of flights waiting to take-off must be displayed. Sequence of take-off is the sequence of addition to the waitlist
When should the register modifier be used? Does it really help?
The file stdio.h, what does it contain?
What are the features of the c language?
Explain what is #line used for?
GIven a sequence of characters. How will you convert the lower case characters to upper case characters. ( Try using bit vector - sol given in the C lib -> typec.h)
Describe the modifier in c?