#include
main()
{
char s[] = "Bouquets and Brickbats";
printf("
%c, ",*(&s[2]));
printf("%s, ",s+5);
printf("
%s",s);
printf("
%c",*(s+2));
}
No Answer is Posted For this Question
Be the First to Post Answer
Explain what?s happening in the first constructor: public class c{ public c(string a) : this() {;}; public c() {;} } How is this construct useful?
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 are the key features in c programming language?
What are the different types of pointers used in c language?
How can I implement a delay, or time a users response, with sub-second resolution?
Difference between C and Embedded C?
What are multidimensional arrays?
sir, i cannot find the way how to write aprogram by using array on queue
What is the real time usage volatile?
can u suggest me am in a confusion to choose whether to go to c programming or a software testing . am a graduate in B.sc(electronics).
7. Identify the correct argument for the function call fflush() in ANSI C: A)stdout B)stdin C)stderr D)All the above
Is it possible to create recycle bin in mobiles?