What is the use of getch ()?


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

Post New Answer

More C Interview Questions

what is linkage error when it occurs in c program

3 Answers  


Explain modulus operator.

0 Answers  


Which is not valid in C? 1) class aClass{public:int x;} 2) /* A comment */ 3) char x=12;

7 Answers  


What is the o/p of the follow pgm? #include<stdio.h> main() { char char_arr[5]=”ORACL”; char c=’E’; prinf(“%s\n”,strcat(char_arr,c)); } a:oracle b. oracl c.e d.none

2 Answers   Oracle,


What are the languages are portable and platform independent?Why they are like that?

1 Answers   Excel, Satyam,






How to explain the final year project as a fresher please answer with sample project

0 Answers  


Why do we use stdio h and conio h?

0 Answers  


write a program of bubble sort using pointer?

3 Answers   TCS,


What is ## preprocessor operator in c?

0 Answers  


5. What kind of sorting is this: SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort

2 Answers   Accenture,


Write an algorithm for a program that receives an integer as input and outputs the product of of its digits. E.g. 1234 = 24, 705 = 0

4 Answers  


2.main { int x,j,k; j=k=6;x=2; x=j*k; printf("%d", x);

9 Answers   HCL, Tech Mahindra,


Categories