Hi Every one......... Please Any body give me the answer for my question. Is it possible to print the word "PRINT F", without using printf() statement in C-Language.
4 6719main() { int i; printf("%d",((i=1)*i-- - --i*(i=-3)*i++ + ++i)); } ans is 24 bt how?pls tell smbody............
3 8268main() { int i=5; printf("%d",++i + i); } output is 10 ------------------------ main() { int i=5; printf("%d",i++ + i); }output is 12 why it is so? give appropiate reason....
2 5177i want to switch my career from quailty assurance engineering to development kindly guide me from which programming language its better for me to start plz refer some courses or certifications too i have an experience of 1.5 yrs in QA field.Kindly guide me
1909
Write a program for Overriding.
Why is main function so important?
When should structures be passed by values or by references?
Explain what does the function toupper() do?
Why & is used in c?
I was asked to write a program in c which when executed displays how many no.of clients are connected to the server.
main() { inta=10,b=20; a>=5?b=100:b=200; printf("%d ",b); }
Why is c platform dependent?
Hi can anyone tell what is a start up code?
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 maximum number of concurrent threads that the InnoDB plug-in can create.
Explain how do you print only part of a string?
What is 2c dna?
What is the value of uninitialized variable in c?
What are the scope of static variables?
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above