1. Give an example for the LIFO (last In First Out) str:





Write Comment

Type in
(Press Ctrl+g to toggle between English and the chosen language)

Comments

Show Similar Question And Answers
QA->Who said these words “Give us good mother and I shall give you good nation”?....
QA->' GIVE ME BLOOD, I WILL GIVE YOU FREEDOM ' WHO SAID THESE WORDS....
QA->" GIVE ME BLOOD, I WILL GIVE YOU FREEDOM " WHO SAID THESE WORDS....
QA->What gas do plats give out at night?....
QA->Idiom of Out and out....
MCQ->What will be the output of the program ? #include<stdio.h> char str = "char str = %c%s%c; main(){ printf(str, 34, str, 34);}"; int main() { printf(str, 34, str, 34); return 0; }....
MCQ->Which of the following statement is correct about the program? #include<stdio.h> int main() { FILE fp; char str[11], ch; int i=0; fp = fopen("INPUT.TXT", "r"); while((ch=getc(fp))!=EOF) { if(ch == '\n' || ch == ' ') { str[i]='\0'; strrev(str); printf("%s", str); i=0; } else str[i++]=ch; } fclose(fp); return 0; }....
MCQ->What will be the output of the program ? #include<stdio.h> int main() { char str; str = "%d\n"; str++; str++; printf(str-2, 300); return 0; }....
MCQ->What will be the output of the program ? #include<stdio.h> int main() { char str[] = "Nagpur"; str[0]='K'; printf("%s, ", str); str = "Kanpur"; printf("%s", str+1); return 0; }....
MCQ->What will be the output of the following program? #include<iostream.h> #include<string.h> class IndiaBix { char str[50]; char tmp[50]; public: IndiaBix(char s) { strcpy(str, s); } int BixFunction() { int i = 0, j = 0; while((str + i)) { if((str + i++) == ' ') (tmp + j++) = (str + i); } (tmp + j) = 0; return strlen(tmp); } }; int main() { char txt[] = "Welcome to IndiaBix.com!"; IndiaBix objBix(txt); cout<< objBix.BixFunction(); return 0; }....
Terms And Service:We do not guarantee the accuracy of available data ..We Provide Information On Public Data.. Please consult an expert before using this data for commercial or personal use
DMCA.com Protection Status Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions