Explain the use of keyword 'register' with respect to variables.


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

Can the “if” function be used in comparing strings?

0 Answers  


who will call your main function in c under linux?

2 Answers  


Write a c program for sum of first n terms of the series S = 1 - (1/3) + (1/5) -(1/7) + (1/9) ......

2 Answers  


Can static variables be declared in a header file?

0 Answers  


Why should I prototype a function?

0 Answers  


f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=?

7 Answers   Geometric Software,


Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].

0 Answers  


What is pragma in c?

0 Answers  


Tell me can the size of an array be declared at runtime?

0 Answers  


Can include files be nested? How many levels deep can include files be nested?

0 Answers   Aspire, Infogain,


What is the difference between %d and %i?

0 Answers  


Write a C Program That Will Count The Number Of Even And Odd Integers In A Set using while loop

0 Answers   HP,


Categories