what is meant by linking error? how can i solve it? if there
is a linking error " unable to open file 'cos.obj'? then what
should i do?
Answer / mr.mohamedali
looks like you just copied a .cpp file from somewhere and tried to run it on your complier.
if it is so you have to copy all the extensions of file name and paste it the directory from which you want to run the program.
| Is This Answer Correct ? | 0 Yes | 0 No |
Given that two int variables, total and amount, have been declared, write a loop that reads integers into amount and adds all the non-negative values into total. The loop terminates when a value less than 0 is read into amount. Don't forget to initialize total to 0. Instructor's notes: This problem requires either a while or a do-while loop.
write a profram for selection sort whats the error in it?
when i use cout or cin call & then either << or >> .....it shows declaration syntax error...what should i do? cout<<"anything"; int a; cin>>a; return 0;
what is macro in c? Difference between single linked list & double linked list what is fifo & lifo? what is stack & queue?
How to upgrade LOOP environment, I just mean, how can i make loop statement editable ? I just try some program using loop statement and checking it in multiple compilers. Every compiler showing different output, what's the wrong ? is it a compiler based problem, or loop based problem, tell me why ? and what will be the debugging process, for this kind of problem ?
which typw of errors ? & how to solve it ?
errors are known as?
3 Answers EX, State Bank Of India SBI,
Write a program to accept two strings of Odd lengths. Then take all odd characters from one string and even characters from the other and concatenate and produce a string.
Find the error (2.5*2=5) (a) X=y=z=0.5,2.0-5.75 (b) s=15;
quoroum of computer languages?
what are the techniques for reducing the fragility of a memory bug?
Assume that the int variables i and j have been declared, and that n has been declared and initialized. Write code that causes a "triangle" of asterisks of size n to be output to the screen. Specifically, n lines should be printed out, the first consisting of a single asterisk, the second consisting of two asterisks, the third consistings of three, etc. The last line should consist of n asterisks. Thus, for example, if n has value 3, the output of your code should be * ** *** You should not output any space characters. Hint: Use a for loop nested inside another for loop.