Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
27% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
1 Commented Post
~9K People Reached
Favorite Forums

13 Posted Topics

Member Avatar for asitmahato

How to change the entry point of gcc compiler ? I mean the code will look like the bellow one. [CODE] #include<stdio.h> int entry() //this is the new entry point instead of main. { return 0; }[/CODE] thank you very much..

Member Avatar for L7Sqr
0
2K
Member Avatar for devanshee

[QUOTE=devanshee;1638456]i am confused that when to use '&' sign in arrays. some times in string array or in character array i got confused. bcz array name itself is an address .so an1 can plz help me out of this??[/QUOTE] In C when we take input using scanf() function we have …

Member Avatar for Narue
0
2K
Member Avatar for saurav2007

As char pointer takes only 8 bit . [CODE] main() { int i = 258; int *iPtr = &i; printf("%d %d", *((char*)iPtr), *((char*)iPtr+1) ); }[/CODE] In this program the bit orientation is 00000001 00000010. First char pointer[CODE](char*)iPtr[/CODE]point a address where the data is 00000010 and next address is containing 00000001. …

Member Avatar for saurav2007
0
129
Member Avatar for indru

All the best.you can try from internet as well as some good book of c programming language..

Member Avatar for Narue
-1
243
Member Avatar for asitmahato

Hi everyone, I want to compile a simple assembly language program like helloworld.asm in visual studio 6. I don't want to use MASM as assembler. I want to include NASM as assembler. please help me out. thanks in advance..:D

Member Avatar for Schol-R-LEA
0
571
Member Avatar for rohoni

In C malloc() returns bytes of memory which is need not to be contiguous. like [CODE] int *a; a=(int*) malloc(sizeof(int)); [/CODE] It returns some bytes (4 byte in some compiler) which is uninitialized. Let take the address of a is 1002. If we try to assign memory to some other …

Member Avatar for Narue
0
1K
Member Avatar for khsoccer

Yes we are always here to help you. you have to mention properly what is your problem exactly. I mean you have to submit your wrong code then we will help you in you way.

Member Avatar for Schol-R-LEA
0
449
Member Avatar for acechauhan
Member Avatar for techy23

you can write whole the code of your project in a single source file.but it will create problem at the time of maintenance. so you should make a module for a particular task.it will also help you at the time of debugging. And try to use GCC compiler it is …

Member Avatar for asitmahato
0
1K
Member Avatar for asitmahato
Member Avatar for natha_peepli

if we can know what is the expected out put then it will be better for us to help you.

Member Avatar for asitmahato
0
109
Member Avatar for netuse

[QUOTE=netuse;1638038]hi... :).. I have to generate a Timetable project by useing C program. i do't have no idea how to generate the code.. so please send me some codes.. and tell some idea to generate.. with your help, i try and complete my project. Thanking you[/QUOTE] Let you start your …

Member Avatar for asitmahato
-1
96
Member Avatar for asitmahato

Hi.. I have downloaded grub source code from [url]ftp://ftp.gnu.org/gnu/grub[/url]. I have compiled that source code using ./configure then make command but i have not get any binary file. Actually i want to use GRUB boot loader for my own Os. please guide me. I am very new here. thanks in …

0
75

The End.