Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
No Answer is Posted For this Question
Be the First to Post Answer
Given an array of length N containing integers between 1 and N, determine if it contains any duplicates.
Is reference used in C?
Write a program to swap two numbers without using a temporary variable?
I have written a pro*C program to fetch data from the cursor. where in i have used the concept of BULK FETCH.... each FETCH statement is taking lots of time to fetch specified number of rows at...
Main must be written as a.the first function in the program b.Second function in the program c.Last function in the program d.any where in the program
19 Answers CTS, HCL, TCS,
How do you list files in a directory?
Explain how can I make sure that my program is the only one accessing a file?
Explain what is a program flowchart and explain how does it help in writing a program?
How is null defined in c?
Illustrate it summing the series 2+4+6+......to n terms using (i) while loop (ii) do-while loop
Why preprocessor should come before source code?
What will be the result of the following C language program? main() { int a = 0; int b = 20; char x = 1; char y = 10; if(a,b,x,y) printf("Welcome"); }