what is the difference between 123 and 0123 in c?
No Answer is Posted For this Question
Be the First to Post Answer
why i join syntel?
23 Answers ABC, Syntel, TCS,
What is the use of keyword VOLATILE in C?
what is the use of operator ^ in C ? and how it works?
write a own function for strstr
c programming of binary addition of two binary numbers
write a program that uses point of sale system. which are mainly used by retail markets, where the is a database inventory list, a slip should be printed for the customer. manage should be able to access what has been sold and what is left from stock?
What is a structure and why it is used?
Why isnt any of this standardized in c?
in linking some of os executables are linking name some of them
What is the right type to use for boolean values in c? Is there a standard type? Should I use #defines or enums for the true and false values?
There seem to be a few missing operators ..
consider the following structure: struct num nam{ int no; char name[25]; }; struct num nam n1[]={{12,"Fred"},{15,"Martin"},{8,"Peter"},{11,Nicholas"}}; ..... ..... printf("%d%d",n1[2],no,(*(n1 + 2),no) + 1); What does the above statement print? a.8,9 b.9,9 c.8,8 d.8,unpredictable value