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,

1301

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

Wilco,

1148

#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,

1323

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,

1772

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,

1202

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

Wilco,

1085

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,

1154

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,

1577

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,

1658

Can you name some types of inheritance?

Motorola,

1 4142

Describe these concepts: Polymorphism, Inheritance and Abstraction.

TCS,

1217


Un-Answered Questions { Programming Languages }

Is python a high level language?

852


How do I delete a file?

899


What is a constant reference?

1090


Is drupal is a cms?

82


Hello Experts, What is the difference between move and move corresponding exactly? please post me asap

1873


How to check a field or column exists in a table or not in codeigniter?

631


What are friend classes?

1084


Do you know what is numpy and how is it better than a list in python?

967


What is try catch in scala?

1


Tell us what is python?

1028


What is the difference between Case Object and Object(Normal Object)?

7


What is the difference between facades vs helper functions?

749


Is buffer size and file block size is similar? If similar,at which case it will be same size?

2194


What are plugins?

130


What is meant by Modularity ?

840