what is op?
for(c=0;c=1000;c++)
printf("%c",c);
Answer Posted / a programmer
This will print the ascii characters from 0 to 1000 if the
datat type of the variable c is other than character. If the
datatype of the variable is char then it will be into
infinite loop.
| Is This Answer Correct ? | 4 Yes | 5 No |
Post New Answer View All Answers
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
Do you have any idea how to compare array with pointer in c?
What are pointers?
Is main a keyword in c?
What is the difference between procedural and functional programming?
write a c program to find the sum of five entered numbers using an array named number
I heard that you have to include stdio.h before calling printf. Why?
Which driver is a pure java driver
how should functions be apportioned among source files?
Do you know the purpose of 'register' keyword?
write a c program to print the next of a particular no without using the arithmetic operator or looping statements?
Why do we need a structure?
What is assert and when would I use it?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it(should not use big integers and exponential functions)
Is that possible to store 32768 in an int data type variable?