An organised method of depicting the use of an area of computer memory used to signify the uses for different parts of the memory
a) swap
b) extended memory
c) memory map
d) all of the above
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } what will happen if you executed this code?
x=y=z=1 z=++x||++y&&++z Printf("%%%d";xyz) what is the values of x,y and z?????
Write a c program to print the sizes and ranges of different data types in c?
What are void pointers in c?
How are pointers declared in c?
What is union in c?
Differentiate between functions getch() and getche().
What is the difference between text and binary i/o?
Explain how do you determine whether to use a stream function or a low-level function?
What is difference between stdio h and conio h?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
Write a C program to check a number even or odd, without using any relational, arithmetic operator and any loops.