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
What is adt in c programming?
what is the difference between 123 and 0123 in c?
How can I read a binary data file properly?
What happens if you free a pointer twice?
What is the use of keyword VOLATILE in C?
write a c program to find biggest of 3 number without relational operator?
How can I find out how much memory is available?
main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }
How can I find leaf node with smallest level in a binary tree?
DIFFERNCE BETWEEN THE C++ AND C LANGUAGE?
What is switch in c?
Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }