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 9109

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

1 12041

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

2 18342

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

1 6944

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

1 6033

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 6112

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

CSC,

1 13072

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

1 6579

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

2 13911

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

Adobe, CSC,

2 25682

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

3 5923

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

1 13228

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

1 8342

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

3 9253

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

2 13457


Un-Answered Questions { Programming Code }

Write a Program for matrix multiplication.

875


3) Int Matrix of certain size was given, We had few valu= es in it like this. =97=97=97=97=97=97=97=97=97=97=97 1 = | 4 | | 5 | &= nbsp; | 45 =97=97=97=97=97=97=97=97=97=97=97 &n= bsp; | 3 | 3 | 5 | = | 4 =97=97=97=97=97=97=97=97=97=97=97 34 |&nbs= p; 3 | 3 | | 12 | &= nbsp; =97=97=97=97=97=97=97=97=97=97=97 3 | &nbs= p; | 3 | 4 | = | 3 =97=97=97=97=97=97=97=97=97=97=97 3 | = ; | | | = ; 3 | =97=97=97=97=97=97=97=97=97=97=97 &= nbsp; | | 4 | = ; | 4 | 3 We w= ere supposed to move back all the spaces in it at the end. Note: = If implemented this prog using recursion, would get higher preference.

3751


how to take time as input in the format (12:02:13) from user so that controls remains between these columns?

2225


program for straight line(y=mx+c)

5953


ArrayList declaration in .net

3170


How to get Dynamically Linked Comboboxes Set?

2402


A suduco given & u hv 2 check if it is incomplete(blanks left),or correct or incorrect

2830


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

3017


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

3768


Cluster head selection in Wireless Sensor Network using C programming language.

3678


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

2469


How to Check if File Exists?

528


create a C-code that will display the total fare of a passenger of a taxi if the driver press enter,the timer will stop. Every 10 counts is 2 pesos. Initial value is 25.00

6922


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

816


How do you verify if the two sentences/phrases input is an anagram using predefined functions in string.h and by using arrays?

2493