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
Here is a neat trick for checking whether two strings are equal
Can you pass an entire structure to functions?
Write a program to print fibonacci series without using recursion?
What is array within structure?
Differentiate between the expression “++a” and “a++”?
Write a Program to find whether the given number or string is palindrome.
What are called c variables?
Can we change the value of #define in c?
Explain what happens if you free a pointer twice?
List the different types of c tokens?
By using C language input a date into it and if it is right?
Difference between Function to pointer and pointer to function
What will be the outcome of the following conditional statement if the value of variable s is 10?
How is = symbol different from == symbol in c programming?
The performance of an operation in several steps with each step using the output of the preceding step a) recursion b) search c) call by value d) call by reference