Write down the difference between
c. Loop and goto statement
d. (!0) and (!1)
e. (1= =! 1) and (1!=1)
f. NULL and !NULL
difference between c/c++ programing language? what is necessesity of c++ when existing c programing language?
Find the error (2.5*2=5) (a) X=y=z=0.5,2.0-5.75 (b) s=15;
void main() { int i=1; printf("%d%d%d",i,++i,i++); } Cau u say the output....?
How to reverse a linked list without using array & -1? Thank you.
what is run time error?
void main() { int i=5; printf("%d",i+++++i); }
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
how to convert decimal to binary in c using while loop without using array
50 Answers Apple, Aptech, Arwen Tech, BCS, C2D Software, CEC,
quoroum of computer languages?
what is the error in the following code: main() { int i=400,j; j=(i*i)/i; }
What is the out put of this programme? int a,b,c,d; printf("Enter Number!\n"); scanf("%d",&a); while(a=!0) { printf("Enter numbers/n"); scanf("%d%d%d",&b,&c,&d); a=a*b*c*d; } printf("thanks!"); getche(); Entering numbers are a=1,b=2,c=3,d=4 b=3,c=4,d=-5 b=3,c=4,d=0
Write a C program to enter 10 integer numbers through one variable and count how many of them are even using while loop ?