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

Company Name Starts with ...
#  A  B  C  D  E   F  G  H  I  J   K  L  M  N  O   P  Q  R  S  T   U  V  W  X  Y  Z

IBM C Interview Questions
Questions Answers Views Company eMail

What are Storage Classes in C ?

32 128862

WHAT IS THE DIFFERENCE BETWEEN malloc() and calloc() in c file management?

28 88403

How do I declare a pointer to an array?

6 14239

Result of the following program is main() { int i=0; for(i=0;i<20;i++) { switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error

8 30528

What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c 9 21223


what will the following program do? void main() { int i; char a[]="String"; char *p="New Sring"; char *Temp; Temp=a; a=malloc(strlen(p) + 1); strcpy(a,p); //Line no:9// p = malloc(strlen(Temp) + 1); strcpy(p,Temp); printf("(%s, %s)",a,p); free(p); free(a); } //Line no 15// a) Swap contents of p & a and print:(New string, string) b) Generate compilation error in line number 8 c) Generate compilation error in line number 5 d) Generate compilation error in line number 7 e) Generate compilation error in line number 1

1 8555

In the following code segment what will be the result of the function, value of x , value of y { unsigned int x=-1; int y; y = ~0; if(x == y) printf("same"); else printf("not same"); } a) same, MAXINT, -1 b) not same, MAXINT, -MAXINT c) same , MAXUNIT, -1 d) same, MAXUNIT, MAXUNIT e) not same, MAXINT, MAXUNIT

1 8030

what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these

2 11661

What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these

3 9074

What will be the result of the following program? main() { char p[]="String"; int x=0; if(p=="String") { printf("Pass 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } else { printf("Fail 1"); if(p[sizeof(p)-2]=='g') printf("Pass 2"); else printf("Fail 2"); } } a) Pass 1, Pass 2 b) Fail 1, Fail 2 c) Pass 1, Fail 2 d) Fail 1, Pass 2 e) syntax error during compilation

10 15115

how to convert binary to decimal and decimal to binary in C lanaguage

7 28167

How to use c/c++ code in JAVA

10 22008

how many header file is in C language ?

44 81003

When do you say that a digraph is acyclic A)if and only if its first search does not have back arcs B)a digraph is acyclic if and only if its first search does not have back vertices C)if and only if its first search does not have same dfnumber D)None of these

1 5649

what is difference between ++(*p) and (*p)++

17 29808

Post New IBM C Interview Questions


IBM C Interview Questions


Un-Answered Questions

Tell me what are the steps for creating basic or vertical forms?

3


How do you evaluate the impact of model updates on downstream applications?

37


Explain data types in scala?

1


I have a drawing of a wound rotor induction motor for a crane. This crane motor has 5 forward speeds & 5 reverse speed implemented of course with different amount of resistance for each speed setting selected. What has got me scratching around is the fact that 8 of the 10 speed selections switch in uneven (unbalanced) amounts of resistances on each of the 3 connections to the motor's rotor.Can this be possible? I would have assumed this would produce unbalanced rotor currents and therefore vibration in the motor. I would greatly appreciate anyone's comments on this. Many thanks, Confused.

1874


How can a user find "commit work" statement in the pm orders (t-code iw32)?

961


Expand-------SNAT

2000


What is kn measurement?

1277


What is the difference between odbc, ole db & jdbc?

3


How to convert a string to lowercase in php?

1042


What is actionmapping?

1080


How do I open aspx files?

1036


What is tag in visualforce markup? : salesforce visualforce

426


The permanent reduction provided by the final drive in heavy vehicle is a) 4:1 b) 6:1 c) 8:1 d) 10:1

1319


Explain about size of a molecule, which makes a substance antigenic?

406


What is the difference between set and unordered_set?

863