#include<stdio.h>
#include<conio.h>
void main()
{
int m=0111,n=20;
printf("%d%d\n",m,n);
getch();
}
WRITE A PROGRAM TO PRINT THE FOLLOWING OUTPUTS USING FOR LOOPS. A) * B) ***** *** * * ***** * * *****
What is the usage of the pointer in c?
program to convert a integer to string in c language'
How can I find the day of the week given the date?
How do I get an accurate error status return from system on ms-dos?
What is adt in c programming?
What is structure padding in c?
What is a pointer variable in c language?
Is c programming hard?
main() {int i=5; // line 1 i=(++i)/(i++); // line 2 printf("%d",i); // line 3 } output is 2 but if we replace line 2 and line 3 by printf("%d",i=(++i)/(i++)); then output is 1. Why?
what will be the output for the following main() { printf("hi" "hello"); }
i=20,k=0; for(j=1;j<i;j=1+4*(i/j)) { k+=j<10?4:3; } printf("%d", k);