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

What is the output of following program ? int main() { int x = 5; printf("%d %d %d\n", x, x << 2, x >> 2); }

Amazon, Qualcomm,

5 22983

what is the definition of storage classes?

Wipro,

3 8265

write a program to compare 2 numbers without using logical operators?

IBM,

5 19068

what is self refrential structure

HCL,

3 7658

what is available in C language but not in C++?

CTS, TCS,

10 15895

What is volatile in c language?

HCL, TCS,

2 6131

wt is d full form of c

TCS, Wipro,

6 11027

what is the maximum limit of row and column of a matrix in c programming. in linux .

NIIT,

4 8867

write a c program to print the values in words eg:- 143 written it has (one hundred and forty three)& 104, 114 are also written words

Captronic, DELL, Google, IBM, Mithi, RCC, Wipro,

5 16498

who is first prime minister in india??

Wipro,

8 9982

how to find the largest element of array without using relational operater?

Satyam, Wipro,

6 13619

WHAT WILL BE OUTPUT OF BELOW CODE . . AND PLEASE EXPLAIN HOW IT COME .. #include #include void main() { int k=20; printf("%d%d%d%d",k,k++,++k,k); getch(); }

25 26101

What are the different flags in C? And how they are useful? And give example for each in different consequences?

1 3918

What is Lazy evaluation in C? Give an example.

1 4685

What is indirect recursion? give an example?

4 30616


Post New C Questions

Un-Answered Questions { C }

Sir i need notes for structure,functions,pointers in c language can you help me please

2418


How can I read/write structures from/to data files?

976


Is int a keyword in c?

984


Which header file is essential for using strcmp function?

1483


Explain the difference between exit() and _exit() function?

1172


What is meant by 'bit masking'?

1390


What is scanf () in c?

1126


How would you use the functions fseek(), freed(), fwrite() and ftell()?

1166


How can I prevent another program from modifying part of a file that I am modifying?

1061


In c programming, explain how do you insert quote characters (? And ?) Into the output screen?

1245


I have seen function declarations that look like this

1044


Explain function?

1091


What are run-time errors?

1120


Can static variables be declared in a header file?

1062


What is the purpose of the following code? Is there any problem with the code? void send(int count, short *to, short *from) { /* count > 0 assumed */ register n = (count + 7) / 8; switch (count % 8) { case 0: do { *to = *from++; case 7: *to = *from++; case 6: *to = *from++; case 5: *to = *from++; case 4: *to = *from++; case 3: *to = *from++; case 2: *to = *from++; case 1: *to = *from++; } while (--n > 0); } }

2502