Completed C test4…
Completed C test4…
What does strtok do? And how do we use it? I tried reading the man pages and tried some examples too but i m still unable to get the satisfactory explanation.
Completed 3 tests from C test series …. I have doubt regarding strtok..
What is the difference between a deep copy and a shallow copy?
Working on pointers and structures…. Also completed 2 questions of assignment on stacks and queues.
around 10 C assignements completed .doing other assignments….
I am able to sign in in the BLOG but not able to access my account….
Completed next 2 assignments in c, this time with some less problems.
Also trying c++ questions and functions.
i have completed 2 assignment with c++.
also practice some program using inline function.
i done my c assignment upto arrays.
array assignment is to diffcult.
Completed 8 questions of Document 29
Working on functions… and structures. Practised C Test papers.
Which code will run faster
for(i=0;i<100;i++)
for(j=0;j<10;j++)
a[i][j]=0;
OR
for(j=0;j<10;j++)
for(i=0;i<100;i++)
a[i][j]=0;