There is a practice in coding to keep some code blocks in comment symbols than delete it when debugging. How this affect when debugging?
No Answer is Posted For this Question
Be the First to Post Answer
What is #define in c?
Why are all header files not declared in every c program?
what does the following code do? fn(int n,int p,int r) { static int a=p; switch(n){ case 4:a+=a*r; case 3:a+=a*r; case 2:a+=a*r; case 1:a+=a*r; } } a.computes simple interest for one year b.computes amount on compound interest for 1 to 4 years c.computes simple interest for four year d.computes compound interst for 1 year
how to connect oracle in C/C++.
I need to take a sentence from input and sort the words alphabetically using the C programming language. Note: This is C not C++. qsort and strtok not allowed
Write a function that accepts two numbers,say a and b and makes bth bit of a to 0.No other bits of a should get changed.
2 Answers Scientific Atlanta, Wipro,
What are the advantages and disadvantages of a heap?
Find the O/p of the following struct node { char *name; int num; }; int main() { struct node s1={"Harry",1331}; struct node s2=s1; if(s1==s2) printf("Same"); else printf("Diff"); }
What is an lvalue?
A array contains dissimilar element how can we count, and A array contains dissimilar element how can we store in another array with out repetition.
Are pointers integers in c?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array