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 |
Two's compliment of -5
Explain what is the difference between null and nul?
Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL
Explain what is the purpose of "extern" keyword in a function declaration?
What are header files in c?
please give code for this 1 2 4 7 11 16
Can I initialize unions?
An entire structure variable can be assigned to another structure variable if __________
3 Answers Sasken, TCS, Tech Mahindra, Wipro,
What is a const pointer?
void main() { int i=5; printf("%d",i++ + ++i); }
What is structure padding and packing in c?
main() { enum{red,green,blue=6,white}; pf("%d%d%d%d", red,green,blue,white); return 0; } a)0 1 6 2 b)0 1 6 7 c)Compilation error d)None of the above