What are the different flags in C? And how they are useful?
And give example for each in different consequences?
Answer Posted / archana
\a , \f, \r, \n , \b are the flags
\a means audible bell
\n= new line
\r= next page
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
What is the explanation for the dangling pointer in c?
How can you tell whether two strings are the same?
Explain what is a 'null pointer assignment' error? Explain what are bus errors, memory faults, and core dumps?
Why & is used in c?
Tell me when is a void pointer used?
How can you pass an array to a function by value?
Explain how can I write functions that take a variable number of arguments?
What is masking?
Explain spaghetti programming?
Why are some ANSI/ISO Standard library routines showing up as undefined, even though I've got an ANSI compiler?
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
Why we use int main and void main?
What is a protocol in c?
What is a macro, and explain how do you use it?