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 Code Interview Questions
Questions Answers Views Company eMail

void main() { char a[]="12345\0"; int i=strlen(a); printf("here in 3 %d\n",++i); }

3 22536

void main() { unsigned giveit=-1; int gotit; printf("%u ",++giveit); printf("%u \n",gotit=--giveit); }

1 9933

void main() { int i; char a[]="\0"; if(printf("%s\n",a)) printf("Ok here \n"); else printf("Forget it\n"); }

Accenture,

3 17324

void main() { void *v; int integer=2; int *i=&integer; v=i; printf("%d",(int*)*v); }

Honeywell,

1 8213

void main() { int i=i++,j=j++,k=k++; printf(ā€œ%d%d%dā€,i,j,k); }

1 8722

void main() { static int i=i++, j=j++, k=k++; printf(ā€œi = %d j = %d k = %dā€, i, j, k); }

3 16407

void main() { while(1){ if(printf("%d",printf("%d"))) break; else continue; } }

1 15652

main() { unsigned int i=10; while(i-->=0) printf("%u ",i); }

HP,

2 18842

#include main() { int x,y=2,z,a; if(x=y%2) z=2; a=2; printf("%d %d ",z,x); }

1 5610

main() { int a[10]; printf("%d",*a+1-*a+3); }

1 5853

#define prod(a,b) a*b main() { int x=3,y=4; printf("%d",prod(x+2,y-1)); }

1 16233

main() { unsigned int i=65000; while(i++!=0); printf("%d",i); }

1 16550

main() { int i=0; while(+(+i--)!=0) i-=i++; printf("%d",i); }

CSC, GoDB Tech, IBM,

9 40595

main() { float f=5,g=10; enum{i=10,j=20,k=50}; printf("%d\n",++k); printf("%f\n",f<<2); printf("%lf\n",f%g); printf("%lf\n",fmod(f,g)); }

1 8270

main() { int i=10; void pascal f(int,int,int); f(i++,i++,i++); printf(" %d",i); } void pascal f(integer :i,integer:j,integer :k) { write(i,j,k); }

1 9136


Un-Answered Questions { Programming Code }

Design an implement of the inputs functions for event mode

3534


Write a Program to find whether the given number is a Armstrong number.

837


write a program using 2 D that searches a number and display the number of items 12 inputs values input 15,20, 13, 30, 38, 40,16, 18, 20 ,18 ,20 enter no. to search : 20

3814


write a program that reverses the input number of n.Formulate an equation to come up with the answer.

7694


What is the functionality of FindWindow?

574


Write a Program to find the sum of digits of a given number until the sum becomes a single digit.

870


find out the list of users who have access to all t-codes starts with 'SU'? thanks in advance all.

2337


What is the difference between proc means and proc tabulate ? explain with a simple example when you have to use means or tabulate?

4539


how to create a 3x3 two dimensional array that will give you the sums on the left and bottom columns

3656


output for printf("printf");

2545


create a stucture student containing field for roll no,class,year and marks.create 10 student annd store them in a file

2719


Hello Sir, Thanks for the Solution but, can you pls. Explain the coding for the Static Function & static variable from the below coding....waiting for Ans. class fact { public static void Main() { fact f=new fact(); int x=1; //Declaration of x as 1 int k=Convert.ToInt32(Console.ReadLine()); for(int i=1;i<=k;i++) { x= x *i; } System.Console.WriteLine(x); } }

2422


How to get Filename from Path?

554


Write code to add functions, which would work as get and put properties of a class?

865


write a program to perform generic sort in arrays?

3080