A c program to display count values from 0 to 100 and flash
each digit for a secong.reset the counter after it reaches
100.use for loop,. pls guys hepl me.. :(
No Answer is Posted For this Question
Be the First to Post Answer
What is a global variable in c?
for(i=0;i=printf("Hello");i++); printf("Hello"); how many times how will be printed?????????
What is the use of c language in real life?
Explain the difference between exit() and _exit() function?
How do you convert strings to numbers in C?
Explain the red-black trees?
void main() { int a[]={1,2,3,4,5},i; for(i=0;i<5;i++) printf("%d",a++); getch(); }
to find the closest pair
What is property type c?
What is static and auto variables in c?
What is the Lvalue and Rvalue?
6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y?