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 associativity explain what is the precidence for * and & , * and ++ how the folloing declaration work 1) *&p; 2) *p++;
what will be printed by this printf? printf("%c",printf("hi")["sharkselva"])); }
What is a #include preprocessor?
How do you determine a file’s attributes?
What is your stream meaning?
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
What is the difference between formatted&unformatted i/o functions?
printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions
what is the significance of static storage class specifier?
How do you use a pointer to a function?
What is the purpose of 'register' keyword in c language?
why the execution starts from main function