write a sorting prgm to sort 50 nos and sum them and also
remove all the occurrences of 15 and print it?
No Answer is Posted For this Question
Be the First to Post Answer
what is object oriental programing?
how to convert binary to decimal and decimal to binary in C lanaguage
7 Answers BPO, Far East Promotions, IBM, RBS,
what wud be the output? main() { char *str[]={ "MANISH" "KUMAR" "CHOUDHARY" }; printf("\nstring1=%s",str[0]); printf("\nstring2=%s",str[1]); printf("\nstring3=%s",str[2]); a)string1=Manish string2=Kumar string3=Choudhary b)string1=Manish string2=Manish string3=Manish c)string1=Manish Kumar Choudhary string2=(null) string3=(null) d)Compiler error
What is difference between array and pointer in c?
what is the defrenece between structure and union
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
why the execution starts from main function
why we are using semicolon at the end of printh statment
Explain can static variables be declared in a header file?
Explain how do you override a defined macro?
will the program compile? int i; scanf(ā%dā,i); printf(ā%dā,i);
What does it mean when the linker says that _end is undefined?