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...



Code Snippets Interview Questions
Questions Answers Views Company eMail

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

1 5545

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 16219

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

3 6780

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

3 6801

#include main() { int i=1,j=2; switch(i) { case 1: printf("GOOD"); break; case j: printf("BAD"); break; } }

1 5616

main() { int i; printf("%d",scanf("%d",&i)); // value 10 is given as input here }

IBM,

2 12601

#define f(g,g2) g##g2 main() { int var12=100; printf("%d",f(var,12)); }

3 19914

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

Zoho,

1 21229

#include main() { char s[]={'a','b','c','\n','c','\0'}; char *p,*str,*str1; p=&s[3]; str=p; str1=s; printf("%d",++*p + ++*str1-32); }

CNSI,

2 12316

#include main() { struct xx { int x=3; char name[]="hello"; }; struct xx *s=malloc(sizeof(struct xx)); printf("%d",s->x); printf("%s",s->name); }

TCS,

1 9122

#include main() { struct xx { int x; struct yy { char s; struct xx *p; }; struct yy *q; }; }

2 11838

main() { extern int i; i=20; printf("%d",sizeof(i)); }

2 22799

main() { printf("%d", out); } int out=100;

3 12609

main() { extern out; printf("%d", out); } int out=100;

1 9753

main() { show(); } void show() { printf("I'm the greatest"); }

2 13432


Un-Answered Questions { Code Snippets }

what does mbln in mblnrects mean? my boolean?

2775


To Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates. String contains only lowercase characters ['a'-'z']

950


What is an XML Schema?

590


What is the functionality of GetWindowTextLength?

607


iam getting keyword or delimiter error while executing ICETOOL,provide me solution.

1386


Write a python program to check if a number is a perfect number?

874


1.Explain what happens to a session object when the browser associated with it is closed? 2.Explain how a session object is created and used. (Note: you are not required to provide the Java statements such as ‘getAttribute’)

2468


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

2479


How to use Client-side Script to Focus Controls in ASP.NET?

2912


I have multiple datasets and I have to search a particular string in all of them at a single time. Please suggest a full jcl or rexx tool for it.

974


What is a markup language?

649


program to bring a window to the front

1976


Write a python program to swap the first and last value of a list?

869


In a gymnastic competition, scoring is based on the average of all scores given by the judges excluding the maximum and minimum scores. Let the user input the number of judges, after that, input the scores from the judges. Output the average score. Note: In case, more than two judges give the same score and it happens that score is the maximum or minimum then just eliminate two scores. For example, if the number of judges is 5 and all of them give 10 points each. Then the maximum and minimum score is 10. So the computation would be 10+10+10, this time. The output should be 10 because 30/3 is 10.

2905


write a vb script to check equal two 2*2 matrix

1420