Multiply an Integer Number by 2 Without Using Multiplication Operator
What are the different pointer models in c?
How do you construct an increment statement or decrement statement in C?
Explain the use of 'auto' keyword
What is chain pointer in c?
Difference between linking and loading?
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.
a memory of 20 bytes is allocated to a string declared as char *s then the following two statements are executed: s="Etrance" l=strlen(s); what is the value of l ? a.20 b.8 c.9 d.21
write a program of palindrome(madam=madam) using pointer?
I have a function which accepts, and is supposed to initialize,a pointer, but the pointer in the caller remains unchanged.
What does extern mean in a function declaration?
Why doesnt this code work?
the real constant in c can be expressed in which of the following forms a) fractional form only b) exponential form only c) ascii form only d) both a and b