Breaking News: Grepper is joining You.com. Read the official announcement!
Check it out

#include <stdio.h> int main() { char array [100]; scanf("%s", array); printf("%s",array); return 0; }

Enchanting Eagle answered on March 1, 2021 Popularity 3/10 Helpfulness 1/10

Contents


More Related Answers

  • #include<stdio.h> int main() { int n; scanf("%d",&n); int ar[n]; int count=0; for(int i=0;i<n;i++) { scanf("%d",&ar[i]); } for(int i=0;i<n;i++) { for(int j=0;j<n;j++) { if(ar[i]==ar[j]) { count=count+1; } else { count=0; } } } printf("%d\n",(count)/2); }
  • #include<stdio.h> main () { int a; printf("Enter the number:"); scanf("%d",&a); printf("the number was:",a); return 0; }
  • #include <stdio.h> int main() { char *arr = "iaminibgroup"; printf("%d", sizeof(arr)); getchar(); return 0; }
  • #include <stdio.h> int main() { // printf() displays the string inside quotation printf("Hello, World!"); return 0; }
  • #include<stdio.h> int main { int arr[ 5]), i=0; while(i<5) arr[i]=++i; for i=0; i<5; i++) printf("%d", arr[i]; return 0;
  • #include <stdio.h> int main() { int x = 10, *y, **z; y = &x; z = &y; printf(""%d %d %d"", *y, **z, *(*z)); return 0; }
  • #include<stdio.h> main() { int *p = 15; printf("%d",*p); }
  • #include<stdio.h> int main() { for(5;2;2) printf("Hello"); return 0; }
  • #include <stdio.h> int main() { int x = 10, *y, **z; y = &x; z = &y; printf(""%d %d %d"", *y, **z, *(*z)); return 0; }
  • #include <stdio.h> int main() { int x = 10, *y, **z; y = &x; z = &y; printf(""%d %d %d"", *y, **z, *(*z)); return 0; }
  • #include <stdio.h> int main() { int x = 5; if (x = 0) printf("Case 1"); else if(x == 0) printf("Case 2"); else printf("Case 3"); }
  • #include <stdio.h> int main() { int num,i=1; printf("Enter the number whose table you want to print?"); scanf("%d",&num); table: printf("%d x %d = %d\n",num,i,num*i); i++; if(i<=10) goto table; }
  • #include <stdio.h> int main() { int num,i=1; printf("Enter the number whose table you want to print?"); scanf("%d",&num); table: printf("%d x %d = %d\n",num,i,num*i); i++; if(i<=10) goto table; }
  • #include <stdio.h> int main() { int x = 10, *y, **z; y = &x; z = &y; printf(""%d %d %d"", *y, **z, *(*z)); return 0; }
  • #include <stdio.h> int main() { int x=(20||40)&&(10); printf("%d",x); return 0; }
  • #include int main(){ int i,j; i=j=2,3; while(--i&&j++) printf(%d %d,i,j); return 0; }
  • int main(int c, char *v[]) { char *c; c=v[1] + v[2] + v[3]; printf(“%c”, c); }

  • #include <stdio.h> int main() { char array [100]; scanf("%s", array); printf("%s",array); return 0; }

    0
    Popularity 3/10 Helpfulness 1/10 Language c
    Source: Grepper
    Tags: c char int return
    Link to this answer
    Share Copy Link
    Contributed on Mar 01 2021
    Enchanting Eagle
    0 Answers  Avg Quality 2/10


    X

    Continue with Google

    By continuing, I agree that I have read and agree to Greppers's Terms of Service and Privacy Policy.
    X
    Grepper Account Login Required

    Oops, You will need to install Grepper and log-in to perform this action.