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 default constructor?
increment operateor (++)and decrament(--) #include<stdio.h> #inclide<conio.h> main() { int x=15; while(x!=0) scanf("%d",&x); {
What is the sizeof () a pointer?
which one low Priority in c? a)=,b)++,c)==,d)+
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?
What is the difference between %d and %*d in C
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
What is the difference between exit() and _exit() function?
how we can make 3d venturing graphics on outer interface
a linear linked list such that the link field of its last node points to the first node instead of containing NULL a) linked list b) circular linked list c) sequential linked list d) none
consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value
Write a program to print “hello world” without using semicolon?