1,395 views
0 votes
0 votes
#include<stdio.h>
int main()

{

  int i=0;

 for(printf(" one\n "); i < 3 &&  printf(" "); i++)

{

         printf("Hi!\n");

}

return 0;

}

Please log in or register to answer this question.

Related questions

0 votes
0 votes
2 answers
1
shiva0 asked Jul 18, 2018
808 views
#include<stdio.h main() { char c = 'A'+255; printf("%c", c); }
0 votes
0 votes
2 answers
2
shiva0 asked Jul 18, 2018
4,433 views
#include <stdio.h>main(){char *p = 0;*p = 'a';printf("value in pointer p is %c\n", *p);}
0 votes
0 votes
1 answer
4