EmbLogic's Blog

Author Archives: arjumand

Seminar Topic

Can anyone suggest me Presentation Topic related to embedded systems……i have a seminar.

Posted in Uncategorized | Leave a comment

did recursive functions and Console i/o file i/o

Posted in Uncategorized | Leave a comment

I am trying to install fedora on a separate internal hard disk…….but an error of “not enough memory”comes. Plz Help!!

Posted in Uncategorized | 2 Comments

Solve the Mystery of pre and post increment operators

Assume any value of k eg 1 Q1 d=k++/++k……..print d and k, k=3; why is the reult 1 for d??? Q2 d=printf(“%d%d%d”,++k,k,k++);   printf(“%d%d%d”,k++,k,k++); Why the result vary in both the printf statements.??? Q3 printf(“%d%d%d”,k,k++,++k); what will be the output … Continue reading →

Posted in Data Structures with C | 5 Comments