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

C Interview Questions
Questions Answers Views Company eMail

Determine the result of performing two successive block transfers into the same area of a frame buffer using the binary arith operations

2306

Device an algorithm for weiler-atherton polygon clipping, where the clipping window can be any specified polygon

5907

dennis ritchie invented C language in AT&T bell laboratory what is the extension of AT&T?

4 7646

Please provide question papers of NATIONAL INFORMATICS CENTRE for Scientific officer

2918

i need all types of question paper releted to "c" and other language.

2352

what is the output of the following program? #include void main() { float x=1.1; while(x==1.1) { printf("\n%f",x); x=x-0.1; } }

6 21120

what is the output of the following program? #include void main() { int x=4,y=3,z; z=x-- -y; printf("\n%d %d %d",x,y,z); }

14 19757

do you think its fraud or original company?

1995

what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason

3 26492

Can we include one C program into another C program if yes how?

Infosys,

7 12505

What is the difference between constant pointer and pointer to a constant. Give examples.

TCS,

4 12348

what is the output of the following program? main() { int c[]={2,8,3,4,4,6,7,5}; int j,*p=c,*q=c; for(j=0;j<5;j++) { printf("%d",*c); ++q; } for(j=0;j<5;j++) { printf("%d",*p); ++p; } }

4 8194

what is the output of the following program? main() { int i=-1,j=-1,k=0,l=2,m; m=i++&&j++&&k++||l++; printf("%d %d %d %d %d",i,j,k,l,m); }

7 10882

In the following control structure which is faster? 1.Switch 2.If-else and which consumes more memory?

4 7169

What should not contain a header file?

2 4703


Post New C Questions

Un-Answered Questions { C }

Explain continue keyword in c

975


What is unary operator?

1062


What is a scope resolution operator in c?

1220


What is a far pointer in c?

1003


Read the following data in two different files File A: aaaaaaaadddddddd bbbbbbbbeeeeeeee ccccccccffffffff File B: 11111111 22222222 33333333 By using the above files print the following output or write it in the Other file as follows aaaaaaaa11111111dddddddd bbbbbbbb22222222eeeeeeee cccccccc33333333ffffffffffff

3223


How can I call system when parameters (filenames, etc.) Of the executed command arent known until run time?

1045


Do pointers need to be initialized?

1039


What is typedef example?

1126


void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply

2719


What is #include stdio h?

1072


What is sizeof array?

1015


When I tried to go into a security sites I am denied access and a message appeared saying 'applet not initialize'. How can I rectify this problem.

1946


Difference between linking and loading?

1070


What are called c variables?

1026


What is the benefit of using #define to declare a constant?

1061