Can we use visual studio for c?
No Answer is Posted For this Question
Be the First to Post Answer
print a "hello" word without using printf n puts in c language
difference between object file and executable file
a character variable can at a time store a) 1 character b) 8 characters c) 254 characters d) none of the above
how does a general function , that accepts an array as a parameter, "knows" the size of the array ? How should it define it parameters list ?
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
How can you tell whether two strings are the same?
what is the different between if-else and switch statment (other than syntax)
26 Answers CTS, Oracle, Scorpos,
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
Describe dynamic data structure in c programming language?
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
write a programme to enter some number and find which number is maximum and which number is minimum from enterd numbers.
wat is output of the following int main() { const int j=2; int i; switch(i) { case 1:break; case j:break; default:break; } }