C and C++

Moderators: None (Apply to moderate this forum)
Number of threads: 28695
Number of posts: 94715

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
typecasting of pointers Posted by arunabha on 11 Sept 2012 at 10:48 AM
#include<stdio.h>
#include<conio.h>
struct node
{
int data;
struct node *next;
};
struct node **tos;
void main()
{
struct node *head,*new;
struct node *p=NULL;
tos=&p;
head=(struct node*)malloc(sizeof(struct node));
head->data=10;
head->next=tos;
new=(struct node*)malloc(sizeof(struct node));
tos=new;
printf("%d",head->data);
getch();
}
it gives a warning on line no-16&18:
warning :suspicious pointer conversion
please crrect and explain?



 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.