Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

Un-Answered Questions { Programming Languages }

What are the output(s) for the following ? #include char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); }

1192


What does. int *x[](); means ?

1079


a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);

1147


main() { int i = 10; printf(" %d %d %d ", ++i, i++, ++i); }

1166


main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }

1567


main() { printf("hello"); fork(); }

1209


main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }

1451


typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?

1654


Describe these concepts: Polymorphism, Inheritance and Abstraction.

1212


Explain the advantages of inheritance.

1156


Explain virtual inheritance?

1214


How can you overcome the diamond problem in inheritance?

1190


How to hide the base class functionality in Inheritance?

1150


What is the important feature of inheritance?

1145


State what is encapsulation and friend function?

1282