What is return in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
what is meant by the "equivalence of pointers and arrays" in C?
What should malloc() do?
sir i wanted to know how we wap in c to add numbers without using arithmetic operator in which digits are entered by user?
Define recursion in c.
Why Modern OS are interrupt driven?Give an example
How do you define a function?
Do array subscripts always start with zero?
Write a program that takes a 5 digit number and calculates 2 power that number and prints it.
5 Answers TCS, Vimukti Technologies,
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
write the output of following code .. main() { static int a[]={10,20,30,40,50}; int *ptr=a; static int arr[2][2]={1,2,3,4}; char str[]="ABCD * 4#"; char *s=str+2; int i,j; for(i=0;i<5,i++) printf("%d",*ptr++); for(i=0;i<2;i++) for(j=0;j<2;j++) printf("%d\n",*(*(n+i)+j)); printf("%c\n%c\n%c\n",*(str+2),*s++,*--s); }
What is the use of extern in c?
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);