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...



Programming Languages Interview Questions
Questions Answers Views Company eMail

#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }

Wilco,

1302

#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }

Wilco,

1150

#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

Wilco,

1070

.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }

Wilco,

1325

FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.

Wilco,

1775

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'); }

Wilco,

1203

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

Wilco,

1089

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);

Wilco,

1155

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

Wilco,

1170

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

Wilco,

1580

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

Wilco,

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); }

Wilco,

1458

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

Wilco,

1659

Can you name some types of inheritance?

Motorola,

1 4145

Describe these concepts: Polymorphism, Inheritance and Abstraction.

TCS,

1217


Un-Answered Questions { Programming Languages }

What is the purpose of pear in php?

1035


How to get cookies in laravel?

732


How do I uninstall vc++ 2015?

921


how pseudo column works?

2204


How can I make a time delay in python?

856


What is php good for?

935


How do you remove duplicates from a list in python whilst preserving order?

833


Why we need data visualization in R?

109


Is wordpress good for seo?

203


What is the use of ?

1058


Explain how you will load or add a model in codeigniter?

784


What is data type long in c?

1088


What is a good way to implement complex numbers in c?

1065


How to Embede a copyright symbol in a string?

1644


What is python interpreter?

828