What is scope rule of function in c?
No Answer is Posted For this Question
Be the First to Post Answer
Write a C program to remove the repeated characters in the entered expression or in entered characters(i.e) removing duplicates
main() { static char *s[]={"black","white","yellow","voilet"}; char **ptr[]={s+3,s+2,s+1,s}, ***p; p=ptr; **++p; printf("%s",*--*++p+3); }
main() { int i; printf("%d",i^i); }
x=2,y=6,z=6 x=y==z; printf(%d",x)
13 Answers Bharat, Cisco, HCL, TCS,
Find MAXIMUM of three distinct integers using a single C statement
What is the difference between printf and scanf )?
write a program that types this pattern: 12345678987654321 12345678 87654321 1234567 7654321 123456 654321 12345 54321 1234 4321 123 321 12 21 1 1
What are the header files used in c language?
int x=sizeof(!5.856); What will value of variable x?
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
What is a stream?
void main() {int a[5],i,b=16; for(i=0;i<5;i++) a[i]=2*i; f(a,5,b); for(i=0;i<5;i++) printf("\n %d",a[i]); printf("\n %d",b); } f(int *x,int n,int y) { int i; for(i=0;i<n;i++) *(x+i)+=2; y=y+2; }wat r the errors in the prg.and improvise the prg to get o/p.?