What are the different flags in C? And how they are useful?
And give example for each in different consequences?
Answer / 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 |
List the difference between a 'copy constructor' and a 'assignment operator' in C?
Why is c so powerful?
How does struct work in c?
#include<stdio.h> void main() { int a,b,c; a=b=c=1; c=++a || ++b && ++c; printf("%d\t%d\t%d",a,b,c); }
#include<stdio.h> int main() { int i=2; int j=++i + ++i + i++; printf("%d\n",i); printf("%d\n",j); }
What is merge sort in c?
What are the Advantages of using macro
What is the use of static variable in c?
who did come first hen or agg
What is the right way to use errno?
What is the meaning of && in c?
What is a Genralised LInked List?? Please give a detailed explation of it..