Hi can anyone tell what is a start up code?
No Answer is Posted For this Question
Be the First to Post Answer
main() { 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....
Where are some collections of useful code fragments and examples?
what r the cpu registers r ther?
Explain how can you check to see whether a symbol is defined?
What is alloca() and why is its use discouraged?
Linked lists -- can you tell me how to check whether a linked list is circular?
The code is::::: if(condition) Printf("Hello"); Else Printf("World"); What will be the condition in if in such a way that both Hello and world are printed in a single attempt?????? Single Attempt in the sense... It must first print "Hello" and it Must go to else part and print "World"..... No loops, Recursion are allowed........................
14 Answers HOV Services, IBM, Potty,
Write a c program using for loop to print typical pattern if number of rows is entered by keyboard. ABCBA AB BA A A
what is c language?
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
write a c program to change only the 3rd bit of the particular number such that other bits are not affected.. if bitnum=10(say.. it can be any no..
WHAT IS FLOAT?