What is the use of clrscr?


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

Post New Answer

More C Interview Questions

how to find the binary of a number?

10 Answers   Infosys,


with out using main how to execute the program?

2 Answers  


typedef struct { int i:8; char c:9; float f:20; }st_temp; int getdata(st_temp *stptr) { stptr->i = 99; return stptr->i; } main() { st_temp local; int i; local.c = 'v'; local.i = 9; local.f = 23.65; printf(" %d %c %f",local.i,local.c,local.f); i = getdata(&local); printf("\n %d",i); getch(); } why there there is an error during compiling the above program?

1 Answers  


int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}}; int *p=&a; printf(ā€œ%dā€,*(*(x+1)+3));

2 Answers   Wipro,


What is difference between structure and union?

0 Answers  






When should a type cast be used?

0 Answers  


What is the purpose of sprintf() function?

0 Answers  


write a c programs to do multiplication of two numbers with out using arithmatic operator ??????????

7 Answers   Infosys, TCS,


what is c

1 Answers  


Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.

0 Answers  


how to write a data 10 in address location 0x2000

3 Answers  


how to find sum of digits in C?

21 Answers   CTS, Infosys,


Categories