for(i=1;i>0;i++);
printf("i=%d",i);
what will be the answer????
Answer Posted / naren
ans is i=2
| Is This Answer Correct ? | 1 Yes | 13 No |
Post New Answer View All Answers
What is the scope of global variable in c?
Is sizeof a keyword in c?
How can you increase the allowable number of simultaneously open files?
What is use of bit field?
Given below are three different ways to print the character for ASCII code 88. Which is the correct way1) char c = 88; cout << c << " ";2) cout.put(88);3) cout << char(88) << " "; a) 1 b) 2 c) 3 d) constant
What does the characters “r” and “w” mean when writing programs that will make use of files?
Are bit fields portable?
Why is not a pointer null after calling free? How unsafe is it to use (assign, compare) a pointer value after it is been freed?
What is array of pointers to string?
What is the code for 3 questions and answer check in VisualBasic.Net?
What does dm mean sexually?
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
Is c easier than java?
What are the different types of errors?
Write a program to swap two numbers without using third variable in c?