1.int a=10;
2.int b=20;
3. //write here
4.b=30;
Write code at line 3 so that when the value of b is changed
variable a should automatically change with same value as b.
5.
No Answer is Posted For this Question
Be the First to Post Answer
Is there any possibility to create customized header file with c programming language?
How would you sort a linked list?
in malloc and calloc which one is fast and why?
What is the difference between big endian form and little endian form? write a code to convert big endian form to little endian and vice versa..
What are the parts of c program?
In C language, a variable name cannot contain?
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
Why double pointer is used in c?
c program for searching a student details among 10 student details
int a=0,b=2; if (a=0) b=0; else b=*10; What is the value of b ?
how can we print hellow world programme without using semicolon
Explain what is the difference between functions abs() and fabs()?