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

Post New Answer

More C Interview Questions

Explain what is the difference between #include and #include 'file' ?

0 Answers  


What is the size of empty structure in c?

0 Answers  


#include<std.h> int main() { char *str[]={"Frogs","Do","Not","Die","They","Croak!"}; printf("%d %d\n",sizeof(str),strlen(str)); ...return 0; } what will the output of the above program?

6 Answers  


Program to simulate second clock

2 Answers  


What is the difference between printf and scanf in c?

0 Answers  






how many argument we can pas in in a function

25 Answers   CTS,


int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15

10 Answers   Wipro,


How can I write functions that take a variable number of arguments?

0 Answers  


What is far pointer in c?

0 Answers  


N O S I E R + A S T R A L ---------------- 7 2 5 6 1 3

3 Answers   Honeywell,


What is the use of getchar functions?

0 Answers  


You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.

0 Answers  


Categories