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 9324

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

1 12246

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

2 18618

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

1 7171

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

1 6200

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 6317

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

CSC,

1 13284

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

1 6755

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

2 14207

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

Adobe, CSC,

2 25975

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

3 6215

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

1 13400

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

1 8509

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

3 9475

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

2 13722


Un-Answered Questions { Programming Code }

What is the functionality of GetWindowTextLength?

617


What is the coding about how to recognize color in fuzzy logic using Matlab R2009b?

2084


write a program that can LOCATE and INSERT elements in array using c++ programming languages.

4089


plz send code for Ecorps in j2ee frontend:J2EE Backend: DB2 Express

2926


Write a program to model an exploding firecracker in the xy plane using a particle system

4203


Design a timer circuit using VHDL which has the following: input : start_timer(ST) output: long_time(LT) short_time(ST) when the timer is triggered by the ST(either 0 or 1) signal the timer should generate two timing signals accordingly.While the long time is going ON the other should be OFF and vice versa.

2498


What is the functionality of SetForegroundWindow?

597


Code for Presenting Parent/Child Data in a Data Grid Row?

2602


can any body give me answer to this question please? please give me code in cl with the folling specifications. 1.Accept 2 parameters-date and date type 2.If date type is J then convert date to *MDY format 3.If date type is M convert date to *JUL format 4. Send a program message with the value of converted date? Please give me the answer.Because im practicing in my house.Im taking trining on AS/400.

2281


#include int main(void) { int a=4, b=2; a=b<>2 ; printf("%d",a); return 0; }

1692


i don't know about working of nested for loop can any one help me

2348


create a .dll component operation and use created component in another project. required methods events and properties. connect, add,search,data report

2553


write a program that creates a sequenced array of numbers starting with 1 and alternately add 1 and then 2 to create the text number in the series , as shown below. 1,33,4,6,7,9,............147,148,150 Then , using a binary search , searches the array 100 times using randomly generated targets in the range of 1 to 150

3829


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

7733


How can you print an address of a variable?

950