Why clrscr is used after variable declaration?
No Answer is Posted For this Question
Be the First to Post Answer
Which header file is essential for using strcmp function?
An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory a) swap b) extended memory c) memory map d) all of the above
write a program whose output will be- 1 12 123 1234
int i=~0; uint j=(uint)i; j++; printf(“%d”,j);
Can a variable be both constant and volatile?
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
What is static and volatile in c?
How many bytes are occupied by near, far and huge pointers (dos)?
difference between loading and linking
Here is alphabets : abcdefgh 1) how to reverse. as hgfedcba 2) after reversal, how to group them in a pair hg fe dc ba.
What does & mean in scanf?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?