Which header file is used for clrscr?
No Answer is Posted For this Question
Be the First to Post Answer
How can you increase the size of a dynamically allocated array?
how does the C compiler interpret the following two statements p=p+x; q=q+y; a.p=p+x; q=q+y b.p=p+xq=q+y c.p=p+xq; q=q+y d.p=p+x/q=q+y
main() { int x=2, y=4 if ((x==2||y==4) x++ y++ if (y==4+1) { x=x+y; } y++; printf("The values of x and y are %d and %d."x,y); } What is the output?
What is the ANSI C Standard?
What are nested functions in c?
Want to know how to write a C program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL.
How can I manipulate individual bits?
Write a program to swap two numbers without using the third variable?
When is a null pointer used?
pierrot's divisor program using c or c++ code
Define C in your own Language.
Why header file is used in c?