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 5601main() { int i; printf("%d",((i=1)*i-- - --i*(i=-3)*i++ + ++i)); } ans is 24 bt how?pls tell smbody............
3 7332main() { 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 4411i 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
1566
Why functions are used in c?
Explain what is the purpose of "extern" keyword in a function declaration?
What is the purpose of void in c?
Why array is used in c?
Was 2000 a leap year?
Tell me can the size of an array be declared at runtime?
What are the rules for the identifier?
What is calloc() function?
What is function prototype?
while initialization of array why we use a[][2] why not a[2][]...?
Is it possible to use curly brackets ({}) to enclose single line code in c program?
Write a program for Overriding.
What is pointers in c?
Why c is called object oriented language?
Why do we use return in c?