Unsigned char c;
for ( c=0;c!=256;c++2)
printf("%d",c);
No. of times the loop is executed ?
Post New Answer View All Answers
What is a substring in c?
Who is the main contributor in designing the c language after dennis ritchie?
What is meant by recursion?
void main(int n) { if(n==0) return; main(--n); printf("%d ",n); getch(); } how it work and what will be its output...............it any one know ans plz reply
How can I write functions that take a variable number of arguments?
Why we use conio h in c?
Can the size of an array be declared at runtime?
which of the following statement is wrong a) mes=123.56; b) con='T'*'A'; c) this='T'*20; d) 3+a=b;
The __________ attribute is used to announce variables based on definitions of columns in a table?
Explain how do you determine whether to use a stream function or a low-level function?
Describe how arrays can be passed to a user defined function
Why c is called a middle level language?
Why do we use null pointer?
what is recursion in C
What is sizeof int in c?