In C language what is a 'dangling pointer'?
No Answer is Posted For this Question
Be the First to Post Answer
What is difference between union All statement and Union?
main() { int i; printf("%d",i^i); }
Find errors (1) m = ++a*5; (2) a = b ++ -c*2; (3)y = sqrt (1000);
Write a program that takes three variables(a,b,c) in as separate parameters and rotates the values stored so that value a goes to b,b,to c and c to a
how to find the given number is prime or not?
Give the output for the following program. #define STYLE1 char main() { typedef char STYLE2; STYLE1 x; STYLE2 y; clrscr(); x=255; y=255; printf("%d %d\n",x,y); }
What are the types of i/o functions?
Using functions, write a program that multiplies two arrays. Use the following functions: - Function ReadArray - Function MultiplyArrays - Function DisplayArrays
print 1-50 with two loop & two print Statement
How many parameters should a function have?
what is the output of the following program? #include<stdio.h> void main() { int x=4,y=3,z; z=x-- -y; printf("\n%d %d %d",x,y,z); }
how to multiply two number taking input as a string (considering sum and carry )