EmbLogic's Blog

Author Archives: Mandeesh Singh

About Mandeesh Singh

Live life to the Fullest .. It is not a Dress rehearsal ..

Error : ‘conflicting types for ‘ Why ?

Hi, I was working on my Driver and got this Error for a function. I checked out other blogs on Internet and it was written that it occurs when you are calling a function before declaring it. But I did … Continue reading

Posted in Character Driver | 2 Comments

Update on 03/10/11

I just finished with Structures and Linked Lists tonight. I have to implement Linked Lists, Queues and SCULL and I’ll do it in this week. Char Driver : Still working on Registration and Initialization. I have to cover up a … Continue reading

Posted in Uncategorized | 1 Comment

Query in Assignment 2 : Q14

In Q14, I’m reading the input through scanf. // scanf(“%c”,&arr[i]); in a while loop. The problem is it is taking two characters for a single character entered. I guess it is even taking ‘Enter’ / Carriage return as a input … Continue reading

Posted in Data Structures with C | 2 Comments

Significance of main(int argc, char *argv[]) ?

What is the significance of int argc & char *argv[] ? Where and why is it used ?

Posted in Uncategorized | 1 Comment