When do we get logical errors?
No Answer is Posted For this Question
Be the First to Post Answer
Which control loop is recommended if you have to execute set of statements for fixed number of times?
main() { int x, arr[8]={11,22,33,44,55,66,77,88}; x=(arr+2)[3]; printf(ā%dā,x); }
Explain what will the preprocessor do for a program?
What are types of functions?
What is the use of sizeof () in c?
How many bytes are occupied by near, far and huge pointers (dos)?
what's the o/p int main(int n, char *argv[]) { char *s= *++argv; puts(s); exit(0); }
Why do we write return 0 in c?
Explain the difference between call by value and call by reference in c language?
What are the 5 data types?
What is the difference between union and anonymous union?
what is structuer?