How can I read in an object file and jump to locations in it?
No Answer is Posted For this Question
Be the First to Post Answer
Is fortran faster than c?
What are loops c?
how can i print "hello"
Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc
What is the use of sizeof () in c?
I use turbo C which allocates 2 bytes for integers and 4 bytes for long. I tried to declare array of size 500000 of long type using the following code... long *arr; arr=(long *)(malloc)(500000 * sizeof(long)); It gives a warning that "Conversion may lose significant digits in function main"... And the resulting array size was very less around 8400 as compared to 500000. Any suggestions will be welcomed....
int main(){ float f=8.0; if(f==8.0) printf("good"); else printf("bad"); } what is the answere and explain it?
How to convert decimal to binary in C using recursion??
What are the preprocessor categories?
Explain what does the function toupper() do?
A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
Write a C program where input is: "My name is xyz". output is: "xyz is name My".