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

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

7 52806

#define square(x) x*x main() { int i; i = 64/square(4); printf("%d",i); }

Google, HCL, Quick Heal, WTF,

4 37675

main() { char *p="hai friends",*p1; p1=p; while(*p!='\0') ++*p++; printf("%s %s",p,p1); }

3 14884

#include #define a 10 main() { #define a 50 printf("%d",a); }

2 17546

#define clrscr() 100 main() { clrscr(); printf("%d\n",clrscr()); }

2 19609

main() { 41printf("%p",main); }8

1 5934

main() { clrscr(); } clrscr();

2 5139

enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); }

2 7667

void main() { char far *farther,*farthest; printf("%d..%d",sizeof(farther),sizeof(farthest)); }

2 8565

main() { int i=400,j=300; printf("%d..%d"); }

3 7437

main() { char *p; p="Hello"; printf("%c\n",*&*p); }

1 6139

main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }

1 5731

main() { static char names[5][20]={"pascal","ada","cobol","fortran","perl"}; int i; char *t; t=names[3]; names[3]=names[4]; names[4]=t; for (i=0;i<=4;i++) printf("%s",names[i]); }

2 16472

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

3 7070

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

3 7116


Un-Answered Questions { Programming Code }

how to test pierrot divisor

2817


Devise a program to implement the Fibonacci sequence.

984


Code for Two Classes for Doing Gzip in Memory?

3306


Beautiful is for 012345678 9 and a code for similar word containing the same alphabets

6358


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

3859


What is the match merge ? compare data step match merge with proc sql merge - how many types are there ? data step vs proc sql

2981


write a function that allocates memory for a single data type passed as a parameter.the function uses the new operator and return a pointer to the allocated memory.the function must catch and handle any exception during allocation

2946


write a program that prompt the user to enter his height and weight,then calculate the body mass index and show the algorithm used

4909


Write a code snippet to display an integer in a binary format?

898


how to insert fname,lname,designation values into database while click on the submit button using windows authentication mode?

2583


write a program in java to find the moving average of all prime numbers between 2 and 100.

4077


How to Check if Folder Exists?

572


Bubble Sort. java thereafter the user will be asked to inpout the size of the list,sort the list in ascending order and display the sorted list in a horizontal manner???

2958


In java, why do we set thread priority, when we know that there is no guarantee by which a thread should be execute?

2765


i really need help about this.. write a program to display the set of odd and even numbers separately. find the highest and lowest value of the given numbers.

2787