Explain low-order bytes.
No Answer is Posted For this Question
Be the First to Post Answer
Is c still used?
Is flag a keyword in c?
Write a program to check prime number in c programming?
What is the use of the function in c?
can we access one file to one directory?
write a program to read a number and print in words that is in sentence for example 21,219 then output is "twenty one thousand and two hundred nineteen" by using only control flow statements (only loops and switch case )?
#define min((a),(b)) ((a)<(b))?(a):(b) main() { int i=0,a[20],*ptr; ptr=a; while(min(ptr++,&a[9])<&a[8]) i=i+1; printf("i=%d\n",i);}
Write the program that calculates and prints the average of several integers. Assume that the last value read is sentinel 9999.
for (i <= 5 && i >= -1;++i; i > 0) { printf("%d ", i); }
write a program to print calender using for loop.
Sir,please help me out with the output of this programme:- #include<stdio.h> #include<conio.h> void main() { int a=18,b=12,i; for(i=a<b?a:b;a%i||b%i;i--); printf("%d %d",i); }
void main(int argc,char *argv[],char *env[]) { int i; for(i=1;i<argc;i++) printf("%s",env[i]); }