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 |
main() { char c; for(c='A';c<='Z';c++) getch(); }
what is the error in the following code: main() { int i=400,j; j=(i*i)/i; }
char* f() return "hello:"; void main() {char *str=f(); }
who was the present cheif governor of reserve bank of india
6 Answers State Bank Of India SBI,
what is meant for variable not found?
void main() { int i=5; printf("%d",i+++++i); }
#include<>stdio.h> #include<>conio.h> { printf("hello"); void main() getch(); } what the out put of this program and why ......plz clear my answer
How to reverse a linked list without using array & -1? Thank you.
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.
difference between c/c++ programing language? what is necessesity of c++ when existing c programing language?
I can not get my C++ program to work right. It is supposed to tell if a word is a palindrome or not, but it only tells thet the word is not a palindrome. And I can't fix it.
class test { int a; public: test(int b):a(b){} void show(){ cout<<a; } }; void main() { test t1; test t2(5); t1.show(); t2.show(); } }