How to add two numbers without using semicolon at runtime
Answers were Sorted based on User's Feedback
Answer / myfriend_shankar
#include<stdio.h>
#include<conio.h>
void main()
{
if(printf("9+1= %d ",9+1))
{}
}
| Is This Answer Correct ? | 15 Yes | 4 No |
Answer / snehal sawant
#include<stdio.h>
void main()
{
while(!printf("11+20= %d ",11+20))
{
}
}
| Is This Answer Correct ? | 0 Yes | 0 No |
what is a function method?give example?
6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1
application of static variables in real time
Is c procedural or functional?
What is the difference between union and structure in c?
What is a lvalue
Why is c known as a mother language?
How will you write a code for accessing the length of an array without assigning it to another variable?
What do you mean by a sequential access file?
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
what will be the output for the following program? main() { char ch = 'k'; char c; printf("%c",c); }
What is information technology.