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

int aaa() {printf(“Hi”);} int bbb(){printf(“hello”);} iny ccc(){printf(“bye”);} main() { int ( * ptr[3]) (); ptr[0] = aaa; ptr[1] = bbb; ptr[2] =ccc; ptr[2](); }

1 9225

main() { int i=5; printf(“%d”,i=++i ==6); }

1 12179

main() { char p[ ]="%d\n"; p[1] = 'c'; printf(p,65); }

2 18508

void ( * abc( int, void ( *def) () ) ) ();

1 7091

main() { while (strcmp(“some”,”some\0”)) printf(“Strings are not equal\n”); }

1 6131

main() { char str1[] = {‘s’,’o’,’m’,’e’}; char str2[] = {‘s’,’o’,’m’,’e’,’\0’}; while (strcmp(str1,str2)) printf(“Strings are not equal\n”); }

1 6224

main() { int i = 3; for (;i++=0;) printf(“%d”,i); }

CSC,

1 13190

void main() { int *mptr, *cptr; mptr = (int*)malloc(sizeof(int)); printf(“%d”,*mptr); int *cptr = (int*)calloc(sizeof(int),1); printf(“%d”,*cptr); }

1 6685

void main() { static int i; while(i<=10) (i>2)?i++:i--; printf(“%d”, i); }

2 14080

main() { int i=10,j=20; j = i, j?(i,j)?i:j:j; printf("%d %d",i,j); }

Adobe, CSC,

2 25858

1. const char *a; 2. char* const a; 3. char const *a; -Differentiate the above declarations.

3 6092

main() { int i=5,j=10; i=i&=j&&10; printf("%d %d",i,j); }

1 13328

main() { int i=4,j=7; j = j || i++ && printf("YOU CAN"); printf("%d %d", i, j); }

1 8438

main() { register int a=2; printf("Address of a = %d",&a); printf("Value of a = %d",a); }

3 9398

main() { float i=1.5; switch(i) { case 1: printf("1"); case 2: printf("2"); default : printf("0"); } }

2 13616


Un-Answered Questions { Programming Code }

What is data _null_? ,Explain with code when u need to use it in data step programming ?

3364


Code for IP Address Comparison and Conversion in C#?

4485


can you please write a program for deadlock that can detect deadlock and to prevent deadlock.

3237


In LSMW , what does the following error mean and how to rectify it : Incorrect interface data for set 78 in method C . This error is occuring in idoc processing step of LSMW.

2559


write a program in java to solve a system of n-variabled simultaneous equations using the guassian elimination method. let the maximum possible value of n be 100. run the program using hypothetical values for a set of 10- variables simultaneous equations. print out the program, the input equation and the results generated by the program.

4788


How can you relate the function with the structure? Explain with an appropriate example.

3462


Write a Program in 'C' To Insert a Unique Number Only. (Hint: Just Like a Primary Key Numbers In Database.) Please Some One Suggest Me a Better Solution for This question ??

2481


How to Split Strings with Regex in Managed C++ Applications?

3683


Write a Program to find the number of words in a sentence.

889


How we use ajax in asp.net through javaScript. Please givee me an example.

3002


Code for Small C++ Class to Transform Any Static Control into a Hyperlink Control?

3070


can any one give me code to keyed a flat file and used chain in RPGLE to search any item

2005


How to Check if Folder Exists?

572


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

2894


write a java program to create a Frame with three scrolls, change the back ground color of the frame using functions with values of scrolls.

4667