main()
{
clrscr();
}
clrscr();

Answer Posted / surenda pal singh chouhan

No output/error

Explanation:
The first clrscr() occurs inside a function. So it becomes
a function call. In the second clrscr(); is a function
declaration (because it is not inside any function).

Is This Answer Correct ?    17 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is spark map function?

581


Where does the name "C" come from, anyway?

643


What is #define used for in c?

613


What are the application of c?

646


Give differences between - new and malloc() , delete and free() ?

610






What is pass by value in c?

593


a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.

4545


Explain the difference between malloc() and calloc() in c?

576


#define PRINT(int) printf("int = %d ",int) main() {< BR> intx,y,z; x=03;y=02;z=01; PRINT(x^x); z<<=3;PRINT(x); y>>=3;PRINT(y); }

718


What is the scope of global variable in c?

554


the portion of a computer program within which the definition of the variable remains unchanged a) mode b) module c) scope d) none

645


Why c is called a middle level language?

634


What is the difference between exit() and _exit() function in c?

582


What is the argument of a function in c?

571


write a program to reverse a every alternetive words in a string in a place. EX: Input is "this is the line of text" Output should be "shit is eht line fo text" Please any one tell me code for that.

1577