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 |
Write a program for the following series: 1*3*5-2*4*6+3*5*7-4*6*8+.................up to nterms
Write a program in "C" to calculate the root of a quadratic equation ax^2+bx+c=0, where the value of a,b & c are known.
what is the answer for it main() { int i; clrscr(); printf("%d",&i)+1; scanf("%d",i)-1; }
a function gets called when the function name is followed by a a) semicolon (;) b) period(.) c) ! d) none of the above
main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
#include <stdio.h> int main ( int argc, char* argv [ ] ) { int value1 = 10; int value2 = 5; printf ( "\n The sum is :%d", value1 | value2 ); } This is the answer asked by some one to add two numbers with out using arithmetic operator?Yes this answer is write it given out put as 15.But how????? what is need of following line? int main ( int argc, char* argv [ ] ) how it work?what is the meaning for this line? please explain me.Advance thanks
Write a program on swapping (100, 50)
What is self-referential structure in c programming?
What is the difference between far and near in c?
what is the difference between embedded c and turbo c ?
What is variable declaration and definition in c?
How do you override a defined macro?