- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 2
- Posts with Downvotes
- 2
- Downvoting Members
- 2
13 Posted Topics
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..
[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 …
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. …
All the best.you can try from internet as well as some good book of c programming language..
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
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 …
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.
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 …
I want to compile an assembly program in NASM using MS visual studio 2010. thanks..:D
if we can know what is the expected out put then it will be better for us to help you.
[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 …
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 …
The End.
asitmahato