int a=1;
printf("%d %d %d",a++,a++,a);
need o/p in 'c' and what explanation too
main() { int x=5; clrscr(); for(;x<= 0;x--) { printf("x=%d ", x--); } } a. 5, 3, 1 b. 5, 2, 1, c. 5, 3, 1, -1, 3 d. –3, -1, 1, 3, 5
main() { char c; int i = 456; clrscr(); c = i; printf("%d", c); } a. 456 b. -456 c. random number d. none of the above
void main() { int i=5; printf("%d",i+++++i); }
main() { unsigned int i=65000; while(i++!=0); printf("%d",i); }
int a=1; printf("%d %d %d",a++,a++,a); need o/p in 'c' and what explanation too
void main() { int *mptr, *cptr; mptr = (int*)malloc(sizeof(int)); printf(“%d”,*mptr); int *cptr = (int*)calloc(sizeof(int),1); printf(“%d”,*cptr); }
Can you send Code for Run Length Encoding Of BMP Image in C Language in linux(i.e Compression and Decompression) ?
main() { char *p; p="Hello"; printf("%c\n",*&*p); }
main() { extern int i; i=20; printf("%d",i); }
how to programme using switch statements and fuctions, a programme that will output two even numbers, two odd numbers and two prime numbers of the users chioce.
0 Answers Mbarara University of Science and Technology,
write a c program to print magic square of order n when n>3 and n is odd?
main(){ unsigned int i; for(i=1;i>-2;i--) printf("c aptitude"); }