What are logical errors and how does it differ from syntax errors?
No Answer is Posted For this Question
Be the First to Post Answer
can any one please explain, how can i access hard disk(physical address)? it is possible by the use of far,near or huge pointer? if yes then please explain......
Is c procedural or functional?
Program to find the value of e raised to power x using while loop
What is bubble sort technique in c?
How can you invoke another program from within a C program?
how the compiler treats any volatile variable?Explain with example.
what is the difference between these initializations? Char a[]=”string”; Char *p=”literal”; Does *p++ increment p, or what it points to?
what is the output of the following code? main() { int I; I=0x10+010+10; printf("x=%x",I); } give detailed reason
I just typed in this program, and it is acting strangely. Can you see anything wrong with it?
What is the process to generate random numbers in c programming language?
main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }
What are static variables, and where are they stored?