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 |
How are variables declared in c?
Calculate the weighted average of a list of n numbers using the formula xavg = f1x1+f2x2+ ….+ fnxn where the f’s are fractional weighting factors, i.e., 0<=fi<1, and f1+f2+….+fn = 1
What is the difference between struct and union in C?
Why does everyone say not to use gets?
WHAT IS PRE POSSESSORS?
main is a predefined or user define function if user defined why? if predefined whay?
Difference between strcpy() and memcpy() function?
what is difference between ++(*p) and (*p)++
17 Answers Accenture, HCL, IBM,
What is structure in c language?
main() { int x=2, y=4 if ((x==2||y==4) x++ y++ if (y==4+1) { x=x+y; } y++; printf("The values of x and y are %d and %d."x,y); } What is the output?
What is encapsulation?
What is the best way of making my program efficient?