How to create a program that lists the capital country when told what the original country is? (Terribly sorry, I'm a novice programmer and would appreciate any help ;).
Cheers,
Alexxis
No Answer is Posted For this Question
Be the First to Post Answer
void main() { int i=5; printf("%d",i+++++i); }
what are the techniques for reducing the fragility of a memory bug?
write the value of x and y after execution of the statements: int x=19,y; y=x++ + ++x; x++; y++;
char* f() return "hello:"; void main() {char *str=f(); }
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.
what is exceptions?
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.
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.
Write a c-programe that input one number of four digits and find digits sum?
Why are memory errors hard to debug?
what is macro in c? Difference between single linked list & double linked list what is fifo & lifo? what is stack & queue?
UINT i,j; i = j = 0; i = ( i++ > ++j ) ? i++ : i--; explain pls....