Learn to indent properly your code, it show its structure and it helps reading and understanding. It also helps spotting structures mistakes.
#include<stdio.h>
#include<conio.h>
struct node *head=NULL;
static int count=0;
struct node
{
int coef;
int pow;
struct node *link;
};
for(i=0;i<=degree;i++)
{
temp=(struct node*)malloc(sizeof(struct node));
if(count==0)
{
temp->link=head;
head=temp;
count++;
}
else if (count==1)
{
temp->link=head->link;
head->link=temp;
count++;
}
else
{
printf("else it's working!!!!!!!!!!!!!!!!'\n");
while(t->link!=NULL)
{
t=t->link; ()
}
temp->link=t->link;
t->link=temp;
count++;
}
}
Professional programmer's editors have this feature and others ones such as parenthesis matching and syntax highlighting.
Notepad++ Home[
^]
ultraedit[
^]
#include<stdio.h>
#include<conio.h>
static int count=0;
struct node
{
int coef;
int pow;
struct node *link;
};
struct node *head=NULL;
for(i=0;i<=degree;i++) {
Quote:
I tried to debug the program with my crazy style of writing printf statements
Give a try to debugger, it will allow you to see the contain of variable during code execution.
There is an almost universal solution: Run your code on debugger step by step, inspect variables.
The debugger is here to show you what your code is doing and your task is to compare with what it should do.
There is no magic in the debugger, it don't know what your cpde is supposed to do, it don't find bugs, it just help you to by showing you what is going on. When the code don't do what is expected, you are close to a bug.
To see what your code is doing: Just set a breakpoint and see your code performing, the debugger allow you to execute lines 1 by 1 and to inspect variables as it execute.
Debugger - Wikipedia, the free encyclopedia[
^]
Mastering Debugging in Visual Studio 2010 - A Beginner's Guide[
^]
Basic Debugging with Visual Studio 2010 - YouTube[
^]
1.11 — Debugging your program (stepping and breakpoints) | Learn C++[
^]
The debugger is here to only show you what your code is doing and your task is to compare with what it should do.