quoroum of computer languages?
No Answer is Posted For this Question
Be the First to Post Answer
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?
how tally is useful?
what is the large sustained error signal that eventually cause the controller output to drive to its limit
Write down the difference between c. Loop and goto statement d. (!0) and (!1) e. (1= =! 1) and (1!=1) f. NULL and !NULL
how to convert decimal to hexadecimal without using arrays just loops
Given an int variable n that has already been declared and initialized to a positive value, and another int variable j that has already been declared, use a do...while loop to print a single line consisting of n asterisks. Thus if n contains 5, five asterisks will be printed. Use no variables other than n and j .
UINT i,j; i = j = 0; i = ( i++ > ++j ) ? i++ : i--; explain pls....
How to create a program that lists countries capitals when country is entered? (Terribly sorry, I'm a complete novist to coding with C, am looking for inspiration and general tips on how to code and create this program.)
#include<stdio.h> void main() { int i=1; printf("%d%d%d",i++,++i,i); }
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.
difference between c/c++ programing language? what is necessesity of c++ when existing c programing language?
write the value of x and y after execution of the statements: int x=19,y; y=x++ + ++x; x++; y++;