When is a “switch” statement preferable over an “if” statement?
No Answer is Posted For this Question
Be the First to Post Answer
what is volatile in c language?
9 Answers Cap Gemini, HCL, Honeywell, TCS, Tech Mahindra,
What is the description for syntax errors?
Which are low level languages?
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
Implement a function that returns the 5th element from the end in a singly linked list of integers in one pass.
What is the difference between NULL and NUL?
How do you initialize pointer variables?
what is data structure?
What is 'makefile' in C langauage? How it be useful? How to write a makefile to a particular program?
What is New modifiers?
Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?
Why is the code below functioning. According to me it MUST NOT.