On most computers additional memory that is accessed through an adapter of feature card along with a device driver program.
a) user memory
b) conventional memory
c) expandedmemory
d) area
No Answer is Posted For this Question
Be the First to Post Answer
Is c functional or procedural?
What is hashing in c?
Create a registration form application by taking the details like username, address, phone number, email with password and confirm password (should be same as password).Ensure that the password is of 8 characters with only numbers and alphabets. Take such details for 3 users and display the details. While taking input password must appear as “****”.
What is type qualifiers?
find largest element in array w/o using sorting techniques.
Can you tell me how to check whether a linked list is circular?
What does calloc stand for?
Write a function stroverlap that takes (at least) two strings, and concatenates them, but does not duplicate any overlap. You only need to worry about overlaps between the end of the first string and the beginning of the second string. Examples: batman, manonthemoon = batmanonthemoon batmmamaman, mamamanonthemoon = batmmamamanonthemoon bat, man = batman batman, batman = batman batman, menonthemoon = batmanmenonthemoon
What are runtime error?
#include<stdio.h> void main() { char *str; long unsigned int add; str="Hello C"; add=&str[0]; printf("%c",add); } What is the output?
1,1,5,17,61,217,?,?.
write a program which counts a product of array elements lower than 10.