When should the const modifier be used?
No Answer is Posted For this Question
Be the First to Post Answer
why do we use pointer instead directly acessing the data?
Is there a way to compare two structure variables?
What are signals in C?
Who invented b language?
Can I pass constant values to functions which accept structure arguments?
What is meant by gets in c?
In c programming write a program that will print 10 multiples of 3 except 15,18,21 using looping
Two's compliment of -5
What are the types of unary operators?
What is the use of function overloading in C?
main() { int l=6; switch(l) { default:l=l+2; case 4:l=4; case 5:l++; break; } printf("%d",l); }
consider the following program sigment int n,sum=1; switch(n) { case 2:sum=sum+2; case 3:sum*=2; break; default:sum=0;} if n=2, what is the value of sum a.0 b.6 c.3 d.none