What is wrong with this statement? Myname = 'robin';
No Answer is Posted For this Question
Be the First to Post Answer
What is the use of function overloading in C?
how does the C compiler interpret the following two statements p=p+x; q=q+y; a.p=p+x; q=q+y b.p=p+xq=q+y c.p=p+xq; q=q+y d.p=p+x/q=q+y
What is external and internal variables What is dynamic memory allocation what is storage classes in C
How are strings stored in c?
why do some people write if(0 == x) instead of if(x == 0)?
Study the Following Points: a.One Cannot Take the address of a Bit Field b.bit fields cannot be arrayed c.Bit-Fields are machine Dependant d.Bit-fields cannot be declared as static 1. Which of the Following Statements are true w.r.t Bit- Fields A)a,b&c B)Only a & b C)Only c D)All
#ifdef TRUE int I=0; #endif main() { int j=0; printf("%d %d\n",i,j); }
Write a C++ program to generate 10 integer numbers between - 1000 and 1000, then store the summation of the odd positive numbers in variable call it sum_pos, then find the maximum digit in this variable regardless of its digits length.
What is dynamic dispatch in c++?
who is the father of c
When should a far pointer be used?
If fflush wont work, what can I use to flush input?