for(i=1;i>0;i++);
printf("i=%d",i);
what will be the answer????
Answer Posted / rajesh jat
i is a signed integer
it will print only and only -32768
//KEEP IT DIRTY
| Is This Answer Correct ? | 16 Yes | 3 No |
Post New Answer View All 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.
Describe the order of precedence with regards to operators in C.
Why do we use int main?
Write a program to print factorial of given number without using recursion?
What are the advantages of the functions?
Combinations of fibanocci prime series
What is preprocessor with example?
What is the sizeof () a pointer?
If fflush wont work, what can I use to flush input?
How do you search data in a data file using random access method?
What is volatile c?
Which is the best website to learn c programming?
Explain what is the general form of a c program?
What is the use of #define preprocessor in c?
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.