Write down the difference between
c. Loop and goto statement
d. (!0) and (!1)
e. (1= =! 1) and (1!=1)
f. NULL and !NULL
No Answer is Posted For this Question
Be the First to Post Answer
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 .
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 .
What are the different types of errors in C and when they occur?
how tally is useful?
UINT i,j; i = j = 0; i = ( i++ > ++j ) ? i++ : i--; explain pls....
I'm having trouble with coming up with the correct code. Thank You!! The assignment was to write a program using string functions that accepts a price of an item and displays its coded value. The base of the keys: X C O M P U T E R S 0 1 2 3 4 5 6 7 8 9 Sample I/O Dialogue: Enter Price: 489.50 Coded Value: PRS.UX
Write a C program to enter 10 integer numbers through one variable and count how many of them are even using while loop ?
How to reverse a linked list without using array & -1? Thank you.
#include"stdio.h" #include"conio.h" void main() { int a; printf("\n enter a number:"); scanf("%c\n"); getch(); }
Why are memory errors hard to debug?
what is the large sustained error signal that eventually cause the controller output to drive to its limit
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.)