EmbLogic's Blog

Author Archives: Harshvardhan

Driver Updates:

Initialization and registration completed.

Posted in Uncategorized | Leave a comment

RCS query?

when somewhere it is found that while modifying a file (which intern form a version later on) that the last two modifications were wrong then certainly we need to switch to the one which was correct ok, now the question … Continue reading

Posted in Uncategorized | Leave a comment

c programming “printf format specification”

printf format specification: %[flag][width][.precision][modifier]<type> meaning of fields with e.g.,: format                                                                        output 1. flag: printf(“%7s”,”hello”);                                 spacespacehello 2. width: prinf(“%4d”,10);                                         spacespace10 3. precision: (“%.2f”,1.1412);                                                  1.41 4. modifier: h interpreted as short used with  i,d,o,u,x l interpreted as long used with i,d,o,u,x L interpreted as … Continue reading

Posted in Data Structures with C | Tagged , | 3 Comments