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 ch; for(ch=0;ch<=127;ch++) printf(“%c %d \n“, ch, ch); }

1 12397

Is this code legal? int *ptr; ptr = (int *) 0x400;

1 8554

main() { char a[4]="HELLO"; printf("%s",a); }

CSC,

3 12461

main() { int a=10,*j; void *k; j=k=&a; j++; k++; printf("\n %u %u ",j,k); }

1 14310

main() { extern int i; { int i=20; { const volatile unsigned i=30; printf("%d",i); } printf("%d",i); } printf("%d",i); } int i;

1 8786

Printf can be implemented by using __________ list.

3 11930

char *someFun() { char *temp = “string constant"; return temp; } int main() { puts(someFun()); }

1 7830

char *someFun1() { char temp[ ] = “string"; return temp; } char *someFun2() { char temp[ ] = {‘s’, ‘t’,’r’,’i’,’n’,’g’}; return temp; } int main() { puts(someFun1()); puts(someFun2()); }

2 10457

main() { char a[4]="HELL"; printf("%s",a); }

Wipro,

3 11294

what mean void creat_object?in public class in this code class A{ public: int x; A(){ cout << endl<< "Constructor A";} ~A(){ cout << endl<< "Destructor A, x is\t"<< x;} }; void create_object(); void main() { A a; a.x=10; { A c; c.x=20; } create_object(); } void create_object() { A b; b.x=30; }

2664

How we print the table of 2 using for loop in c programing?

HCL, Wipro,

14 105584

How we print the table of 3 using for loop in c programing?

7 13308

what is the use of using for loop as "for(;;)"?

Satyam,

5 9166

How to count a sum, when the numbers are read from stdin and stored into a structure?

1 4739

how many processes will gate created execution of -------- fork(); fork(); fork(); -------- Please Explain... Thanks in advance..!

GATE,

8 25349


Un-Answered Questions { Programming Code }

how exactly is the lngColour used?

2199


Give the code for Handling Mouse Events?

2448


For printing a message we use System.out.println in normal programs. We use String msg="text....."; Can't we use String msg=" " in normal programs and System.out.println("........") in applets. Please answer this question?

2701


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

4077


output for printf("printf");

2591


what full form name of B.K.U.

3104


1.What type of material can be sent from a Java servlet to a browser ? How does the browser know how to deal with the material? 2.Explain what happens to a servlet when a servlet engine is sent a GET request.

2768


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.

4832


How can I Draw an ellipse in 3d space and color it by using graph3d?

2706


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

3272


Write a program to Print the Pascal triangle

890


Dear sirs, Hi, I would like to inform you that I want to perform a project using MLP neural network to recognize binary images containing three types of geometric shapes such as squares,rectangels and circles. Furthermore,each image includes only one geometric type. The output of network would be: '1' if the network detects square shape. '2' if the network detects rectangle shape. '3' if the network detects circle shape. '4' if none of these shapes detected. Would you please send me a matlab source code for this project? Your prompt reply would be so appreciated. regards,

2170


Write a Program to truncate a given floating point value (e.g.16.25=16).

954


What is the functionality of EnumChildWindows?

494


Code for Creating a Form Using PlaceHolder Controls?

2895