Where we use clrscr in c?
No Answer is Posted For this Question
Be the First to Post Answer
How do you redirect a standard stream?
write a program to print the all 4digits numbers & whose squares must me even numbers?
What is the advantage of an array over individual variables?
How can I convert a number to a string?
input any 4 digit number and find the difference of all the digits?
What was noalias and what ever happened to it?
When should a type cast be used?
What is the difference between text and binary modes?
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.?
When we use void main and int main?
How do I declare a pointer to an array?
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }