What is wrong with this initialization?
No Answer is Posted For this Question
Be the First to Post Answer
How can a program be made to print the name of a source file where an error occurs?
How can I write a function that takes a format string and a variable number of arguments?
Does sprintf put null character?
Give a method to count the number of ones in a 32 bit number?
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
Can you add pointers together? Why would you?
Explain what standard functions are available to manipulate strings?
what will be the output of this program main() { int i=1; while (i<=10); { i++; } }
what is answer for perfect number????????????????
why 'c' is called middle level language.
main() { int i = 10; printf(" %d %d %d \n", ++i, i++, ++i); }
What is the purpose of scanf() and printf() functions?