can anyone suggest some site name..where i can get some
good data structure puzzles???
No Answer is Posted For this Question
Be the First to Post Answer
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 does this code crash?
What does calloc stand for?
What is wrong with this statement? Myname = 'robin';
How can you increase the size of a statically allocated array?
what is op? for(c=0;c=1000;c++) printf("%c",c);
When should structures be passed by values or by references?
Is flag a keyword in c?
What is the output for the below program? void main() { float me=1.1; double you=1.1; if(me==you) printf("love c"); else printf("know c"); }
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
can we print any string in c language without using semicolon(;)(terminator) in whole program.
Are comments included during the compilation stage and placed in the EXE file as well?