What are the salient features of c languages?
No Answer is Posted For this Question
Be the First to Post Answer
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.
What will be the output of the following program #include<stdio.h> void main() { int i=20; i-=i+++++i++; printf("%d",i); }
What is break in c?
Difference between constant pointer and pointer to a constant.
How can you pass an array to a function by value?
how to find out the reverse number of a digit if it is input through the keyboard?
Why do we use return in c?
What is sorting in c plus plus?
What does a run-time "null pointer assignment" error mean?
If input is 123 then how to print 100 and 20 and 3 seperately?
Is c functional or procedural?
what is the purpose of the code, and is there any problem with it. bool f( uint n ) { return (n & (n-1)) == 0; }