Can you send Code for Run Length Encoding Of BMP Image in C
Language in linux(i.e Compression and Decompression) ?
#include<stdio.h> main() { const int i=4; float j; j = ++i; printf("%d %f", i,++j); }
#define DIM( array, type) sizeof(array)/sizeof(type) main() { int arr[10]; printf(“The dimension of the array is %d”, DIM(arr, int)); }
main() { 41printf("%p",main); }8
write a origram swaoing valu without 3rd variable
main() { char c; int i = 456; clrscr(); c = i; printf("%d", c); } a. 456 b. -456 c. random number d. none of the above
You are given any character string. Find the number of sets of vowels that come in the order of aeiou in the given string. For eg., let the given string be DIPLOMATIC. The answer returned must be "The number of sets is 2" and "The sets are "IO and AI". Vowels that form a singleton set must be neglected. Try to post the program executable in gcc or g++ or in java.
main() { void swap(); int x=10,y=8; swap(&x,&y); printf("x=%d y=%d",x,y); } void swap(int *a, int *b) { *a ^= *b, *b ^= *a, *a ^= *b; }
Give a one-line C expression to test whether a number is a power of 2.
programming in c lanugaue programm will errror error with two header file one as stdio.h and other one is conio.h
main() { main(); }
how can i cast a char type array to an int type array
Declare an array of N pointers to functions returning pointers to functions returning pointers to characters?