compare array with pointer?
sir i wanted to know how we wap in c to add numbers without using arithmetic operator in which digits are entered by user?
what is the little endian and big endian?
Explain what does the format %10.2 mean when included in a printf statement?
Are there any problems with performing mathematical operations on different variable types?
How we can insert comments in a c program?
Write a program to accept a character & display its corrosponding ASCII value & vice versa?
a=10;b= 5;c=3;d=3; if(a printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d);
How we can write a value to an address using macro..?
How can I find out the size of a file, prior to reading it in?
what is the similarities between. system call and library function?
#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
AMMONG THE 4 STROAGE CLASSES IN C, WHICH ONE FASTEST?