What is the difference between abs() and fabs() functions?
No Answer is Posted For this Question
Be the First to Post Answer
Is c high or low level?
write a c program to find largest number in matrix(in each row,each column, diagonally, and in the whole matrix)? Its urgent.
Reverse the part of the number which is present from position i to j. Print the new number. eg: num=789876 i=2 j=5 778986
write a program to create a sparse matrix using dynamic memory allocation.
How do I access command-line arguments?
what is the meaning of 'c' language
what is the associativity of bitwise OR operator?
WHAT IS THE DEFINATION OF IN TECHNOLOGY AND OFF TECHNOLOGY ?
Explain how do you sort filenames in a directory?
Can you think of a way when a program crashed before reaching main? If yes how?
what is the difference between arrays and linked list
26 Answers MAHINDRA, Tech Mahindra, Wipro,
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20