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 |
void main(){ int a; a=1; while(a-->=1) while(a-->=0); printf("%d",a); }
how to swap 2 numbers within a single statement?
What is the difference between null pointer and wild pointer?
how to devloped c lenguege?
What is the difference function call by value & function call by reference?
Do pointers need to be initialized?
what is associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
logic for x=y^n
How can I prevent another program from modifying part of a file that I am modifying?
How will you find a duplicate number in a array without negating the nos ?
6)What would be the output? main() { int u=1,v=3; pf("%d%d",u,v); funct1(&u,&v); pf("%d%d\n",u,v); } void funct1(int *pu, int *pv) { *pu=0; *pv=0; return; } a)1 3 1 3 b)1 3 1 1 c)1 3 0 0 d)1 1 1 1 e) 3 1 3 1
What is the importance of c in your views?