How do you convert strings to numbers in C?
No Answer is Posted For this Question
Be the First to Post Answer
When we use void main and int main?
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
write a program to print sum of each row of a 2D array.
write a c program to change only the 3rd bit of the particular number such that other bits are not affected.. if bitnum=10(say.. it can be any no..
how to generate the length of a string without using len funtion?
Is it cc or c in a letter?
In a switch statement, explain what will happen if a break statement is omitted?
How to avoid buffer overflow?
int i=~0; uint j=(uint)i; j++; printf(“%d”,j);
What is logical error?
what is the difference between strcpy() and memcpy() function?
if function is declared as static in one source file, if I would like to use the same function in some other source file...is it possible....how ?