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
Find the error (2.5*2=5) (a) X=y=z=0.5,2.0-5.75 (b) s=15;
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 .
difference between c/c++ programing language? what is necessesity of c++ when existing c programing language?
main() { char c; for(c='A';c<='Z';c++) getch(); }
wap for bubble sort
which typw of errors ? & how to solve it ?
#include<stdio.h> void main() { int i=1; printf("%d%d%d",i++,++i,i); }
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 are the techniques for reducing the fragility of a memory bug?
How to upgrade LOOP environment, I just mean, how can i make loop statement editable ? I just try some program using loop statement and checking it in multiple compilers. Every compiler showing different output, what's the wrong ? is it a compiler based problem, or loop based problem, tell me why ? and what will be the debugging process, for this kind of problem ?
#include"stdio.h" #include"conio.h" void main() { int a; printf("\n enter a number:"); scanf("%c\n"); getch(); }
write a profram for selection sort whats the error in it?