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
Write a c-programe that input one number of four digits and find digits sum?
write the value of x and y after execution of the statements: int x=19,y; y=x++ + ++x; x++; y++;
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.
what is syntax error?
what is meant for variable not found?
void main() { int i=5,y=3,z=2,ans; clrscr(); printf("%d",++i + --z + i++ + --i * ++y); i=5,y=3,z=2; ans=++i + --z + i++ + --i * ++y; printf("\n%d",ans); getch(); } Its output is 37 and 31.... Please explain me why its different How it works.....
what is the large sustained error signal that eventually cause the controller output to drive to its limit
Write a C program to enter 10 integer numbers through one variable and count how many of them are even using while loop ?
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).
What are the different types of errors in C and when they occur?
How to develop a program using C language to convert 8-bit binary values to decimals. TQ
what is the error in the following code: main() { int i=400,j; j=(i*i)/i; }