what is op?
for(c=0;c=1000;c++)
printf("%c",c);
Answers were Sorted based on User's Feedback
Answer / ashok
I think it will print ascii values of 0,1,2 and so on upto 1000
| Is This Answer Correct ? | 4 Yes | 13 No |
How would you obtain the current time and difference between two times?
Which is better pointer or array?
Stimulate calculator using Switch-case-default statement for two numbers
what is the difference between normal variables and pointer variables..............
15 Answers HP, Infosys, Satyam, Vivekanand Education Society,
Go through this linked list concept.While traversing through the singly linked list sometimes the following code snippet "while(head != NULL)" is used and other times "while(head->link != NULL)"is used(Here head is the pointer pointing to the first node,node has two parts data part and link part).What is the difference between head != NULL and Head->link != NULL and in which situation are they used?
Determine the result of performing two successive block transfers into the same area of a frame buffer using the binary arith operations
Where are c variables stored in memory?
HOW TO HANDLE EXCEPTIONS IN C
Why can't I perform arithmetic on a void* pointer?
Is the below things valid & where it will be stored in memory layout ? static const volatile int i; register struct { } ; static register;
Write code for finding depth of tree
What is the process to generate random numbers in c programming language?