EmbLogic's Blog

C tests

Completed  C test4…

Posted in Project 2: Multiple Data Compression and Encryption | Leave a comment

Doubt:

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.

Posted in Project 2: Multiple Data Compression and Encryption, Uncategorized | Tagged | 2 Comments

C assignments

Completed 3 tests from C test series …. I have doubt regarding strtok..

Posted in Project 2: Multiple Data Compression and Encryption | Leave a comment

C: JATINDER KUMAR

What is the difference between a deep copy and a shallow copy?

Posted in Uncategorized | Leave a comment

C assignments

Working on pointers and structures…. Also completed 2 questions of assignment on stacks and queues.

Posted in Project 2: Multiple Data Compression and Encryption | Leave a comment

c assignment status

around 10 C assignements completed .doing other assignments….

 

Posted in Data Structures with C | Leave a comment

not able to sign in my account

I am able to sign in in the BLOG but not able to access my account….

Posted in Uncategorized | Leave a comment

30.1.30 : Monika

Completed next 2 assignments in c, this time with some less problems.

Also trying c++ questions and functions.

Posted in Uncategorized | Leave a comment

c++ assignment status

i have completed 2 assignment with c++.

also practice some program using inline function.

Posted in Data Structures with C | Tagged | Leave a comment

c assignment

i done assignment upto  array.

 

Posted in Uncategorized | Leave a comment

c assignment

i done my c assignment upto arrays.
array assignment is to diffcult.

Posted in Uncategorized | Leave a comment

C Assignments status

completed first 7 assignments

Posted in Uncategorized | Leave a comment

C assignments

Completed 8 questions of Document 29

Posted in Project 2: Multiple Data Compression and Encryption | Leave a comment

C Assignments

Working on functions… and structures. Practised C Test papers.

Posted in Project 2: Multiple Data Compression and Encryption | Leave a comment

C: JATINDER KUMAR

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;

Posted in Uncategorized | 2 Comments