how do we remove the printed character in printf statement
and write next it it
Answer / bharat
use \br in the starting of next printf statement..
| Is This Answer Correct ? | 1 Yes | 0 No |
Which built-in library function can be used to match a patter from the string?
What are the advantages of external class?
Explain logical errors? Compare with syntax errors.
In the following code segment what will be the result of the function, value of x , value of y { unsigned int x=-1; int y; y = ~0; if(x == y) printf("same"); else printf("not same"); } a) same, MAXINT, -1 b) not same, MAXINT, -MAXINT c) same , MAXUNIT, -1 d) same, MAXUNIT, MAXUNIT e) not same, MAXINT, MAXUNIT
What is a good way to implement complex numbers in c?
What are register variables in c?
What are the 4 types of programming language?
what is an array
Is null valid for pointers to functions?
How is a two dimensional array passed to function when the order of matrix is not known at complie time?
Why main is used in c?
What does struct node * mean?