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
Explain what is the benefit of using an enum rather than a #define constant?
Are negative numbers true in c?
Differentiate between declaring a variable and defining a variable?
What is register variable in c language?
What is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What are the 4 types of functions?
Explain can static variables be declared in a header file?
What is the function of volatile in c language?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
What is array of pointers to string?
What is array of structure in c?
Are the variables argc and argv are always local to main?
Linked lists -- can you tell me how to check whether a linked list is circular?
Describe the difference between = and == symbols in c programming?
How can I write functions that take a variable number of arguments?