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 |
why we need function pointers?
Why c is known as a mother language?
can we change the default calling convention in c if yes than how.........?
Why & is used in scanf in c?
can a union be self-referenced?
Explain the difference between null pointer and void pointer.
what are the facialities provided by you after the selection of the student.
Find the middle node in the linked list?? (Note:Do not use for loop, count and count/2)
main() { int a=5; printf(?%d,%d,%d\n?,a,a< <2,a>>2); } Answer: 5,20,1 please explain this code in detail
When is a void pointer used?
What is a structural principle?
void main() { int i=5; printf("%d",i++ + ++i); }