Place the #include statement must be written in the program?
No Answer is Posted For this Question
Be the First to Post Answer
what will be the output: main(){char ch;int a=10;printf("%d",ch);}
36 Answers Accenture, TCS, Wipro,
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); }
write a program that uses point of sale system. which are mainly used by retail markets, where the is a database inventory list, a slip should be printed for the customer. manage should be able to access what has been sold and what is left from stock?
What are macros in C?
write a program to find the given number is prime or not
2 Answers Accenture, Vasutech,
find largest element in array w/o using sorting techniques.
What is the use of pointers in C?
0 Answers Impetus, Motorola, Tavant Technologies, Virtusa,
int main() { unsigned char a = 0; do { printf("%d=%c\n",a,a); a++; }while(a!=0); return 0; } can anyone please explain me output????
Where static variables are stored in c?
List some basic data types in c?
write a program that explain #define and # undef directive
What is static memory allocation? Explain