How can I get back to the interactive keyboard if stdin is redirected?


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

Post New Answer

More C Interview Questions

How old is c programming language?

0 Answers  


When should you use a type cast?

0 Answers  


what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))".provide an explation regarding the question

6 Answers  


what are the difference between ANSI C and Let Us c and Turbo C

4 Answers   LG Soft,


write a program that will accept two integers and will implement division without using the division operator if the second value is an odd number and will implement multiplication without using multiplication operator if the second value is an even number.

1 Answers  






find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }

0 Answers   Microsoft,


find the minimum of three values inputted by the user

3 Answers  


What is the correct code to have following output in c using nested for loop?

0 Answers  


What is the benefit of using an enum rather than a #define constant?

0 Answers  


How to print India by nested loop? I IN IND INDI INDIA

4 Answers   NIIT, Wipro,


What is the purpose of the code, and is there any problem with it? unsigned int f( unsigned n ) { return –n & 7; }

1 Answers   Google,


Explain how can I convert a number to a string?

0 Answers  


Categories