Differentiate between a for loop and a while loop? What are it uses?
No Answer is Posted For this Question
Be the First to Post Answer
Can include files be nested?
write a program to convert a expression in polish notation (postfix) to inline (normal)
related proverb of "dont count your chicken before it hatches"
application attempts to perform an operation?
if (i = 0)printf ("True"); elseprintf("False"); Under what conditions will the above print out the string "True" a) Never b) Always c) When the value of i is 0 d) all of the above
What is the difference between printf and scanf in c?
design and implement a program that reads floating-points numbers in a sentinel-controlled loop until the user terminates the program by entering zero.your program should determinate and print the smallest,largest and average of the supplied numbers.
what is inline function?
difference between malloc and calloc
How was c created?
Write a program to produce the following output: 1 2 3 4 5 6 7 8 9 10
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }