Answers for "c language"

C
12

c

/* Answer to: "c" */

/*
  To learn about the letter 'C' you go to the Wikipedia:
  https://en.wikipedia.org/wiki/C
  ...but this is a Chrome Exstention for developers:

  C is a general-purpose, procedural computer programming language
  supporting structured programming, lexical variable scope, and
  recursion, while a static type system prevents unintended
  operations.
  
  Here's the Wikipedia:
  https://en.wikipedia.org/wiki/C_(programming_language)
*/
Posted by: Guest on April-17-2020
5

c language tutorial

#include <stdio.h>

int main() {
   /* my first program in C */
   printf("Hello, World! \n");
   
   return 0;
}
Posted by: Guest on November-29-2020
-1

c language

#include stdio.h
#include conio.h
void main(){
    int s1,s2,s3,total;
    float per;
    clrscr();
    printf("ENTER SUBJECT MARKS:");
    scanf("%d%d%d",&s1,&s2,&s3);
    total=s1+s2+s3;
    per=total/3;
    if(s1>40 && s2>40 && s3>49)
    {
      if(per>90)
      printf("A GRADE");
      else if(per>70)  
      printf("B GRADE");
      else if(per>50)
      printf("C GRADE");
      else if(per>40)
      printf("D GRADE");
    }
    else
    printf("FAILED");
    getch();
}
Posted by: Guest on May-18-2021
-1

c tutorial

#include <stdio.h>

void main() {
   /* my first program in C */
   printf("Hello, World! \n");
   
   
}
Posted by: Guest on January-12-2021

Code answers related to "C"

Browse Popular Code Answers by Language