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
UINT i,j; i = j = 0; i = ( i++ > ++j ) ? i++ : i--; explain pls....
I am using Qt 5.6 during compilation it stops and gives error about Qmake The process "C:QtQt5.6.35.6.3msvc2015_64inqmake.exe" crashed. Error while building/deploying project untitled1 (kit: Desktop Qt 5.6.3 MSVC2015 64bit) When executing step "qmake"
What is probability to guarantee that the task a programmer is going to create will be created and be able to run on a particular system (RTOS/GPOS).
char* f() return "hello:"; void main() {char *str=f(); }
A sample program using data structure? what is file handling?
what is exceptions?
void main() { int i=7; printf("N= %*d",i,i); }
Write a c-programe that input one number of four digits and find digits sum?
To generate the series 1+3+5+7+... using C program
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.
Given an int variable n that has been initialized to a positive value and, in addition, int variables k and total that have already been declared, use a do...while loop to compute the sum of the cubes of the first n whole numbers, and store this value in total . Thus if n equals 4, your code should put 1*1*1 + 2*2*2 + 3*3*3 + 4*4*4 into total . Use no variables other than n , k , and total .
which typw of errors ? & how to solve it ?