What is character set?
No Answer is Posted For this Question
Be the First to Post Answer
Explain what is the difference between a string and an array?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
int a=1,b=2,c=3; printf("%d,%d",a,b,c); What is the output?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
Why doesn't the code "int a = 1000, b = 1000; long int c = a * b;" work?
write a c program for greatest of three numbers without using if statment
what would be the output of the following program main() { int a[] = {1,2,3,4,5}; int *ptr = {a,a+1,a+2,a+3,a+4}; printf("%d %d %d %d",a,*ptr,**ptr,ptr); } }
Multiply an Integer Number by 2 Without Using Multiplication Operator
What is a memory leak in structures? How can we rectify that?
Explain union. What are its advantages?
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
Describe dynamic data structure in c programming language?