What are global variables and explain how do you declare them?
to convert a string without using decrement operater and string functions
Which is the best website to learn c programming?
What are the primitive data types in c?
what is pointer ?
10 Answers Kernex Micro Systems,
write a program of bubble sort using pointer?
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
how do u find out the number of 1's in the binary representation of a decimal number without converting it into binary(i mean without dividing by 2 and finding out the remainder)? three lines of c code s there it seems...can anyone help
What is the basic structure of c?
How are strings stored in c?
what is output? main() { #define SQR(x) x++ * ++x int i = 3; printf(" %d %d ",SQR(i),i * SQR(i)); } a)9 27 b)35 60 c)20 60 d)15 175
Explain a pre-processor and its advantages.
What is an anonymous union and where to apply that ?