errors are known as?
Answers were Sorted based on User's Feedback
void main() { int i=1; printf("%d%d%d",i,++i,i++); } Cau u say the output....?
what are the techniques for reducing the fragility of a memory bug?
how tally is useful?
main() { char c; for(c='A';c<='Z';c++) getch(); }
#include<stdio.h> void main() { int i=1; printf("%d%d%d",i++,++i,i); }
write a profram for selection sort whats the error in it?
Given that two int variables, total and amount , have been declared, write a sequence of statements that: initializes total to 0 reads three values into amount , one at a time. After each value is read in to amount , it is added to the value in total (that is, total is incremented by the value in amount ). Instructor's notes: If you use a loop, it must be a for loop. And if you use a loop control variable for counting, you must declare it.
Write down the difference between c. Loop and goto statement d. (!0) and (!1) e. (1= =! 1) and (1!=1) f. NULL and !NULL
what is macro in c? Difference between single linked list & double linked list what is fifo & lifo? what is stack & queue?
printy(a=3,a=2)
void main() { int i=7; printf("N= %*d",i,i); }
Why are memory errors hard to debug?