GradePack

    • Home
    • Blog
Skip to content
bg
bg
bg
bg

GradePack

Which function is used to terminate a process?

Which function is used to terminate a process?

Read Details

What will be the output of the following code snippet?  #inc…

What will be the output of the following code snippet?  #include struct point { int x; int y; }; void doSomething(struct point *p) { p->x = 10; p->y = 20; } int main() { struct point p = {1, 2}; doSomething(&p); printf(“%d %d\n”, p.x, p.y); return 0; }

Read Details

What is the purpose of the following code snippet?  #include…

What is the purpose of the following code snippet?  #include struct point { int x; int y; }; struct point doSomething(struct point p1, struct point p2) { struct point result; result.x = p1.x + p2.x; result.y = p1.y + p2.y; return result; } int main() { struct point p1 = {1, 2}; struct point p2 = {3, 4}; struct point sum = doSomething(p1, p2); printf(“%d %d\n”, sum.x, sum.y); return 0; }

Read Details

The function unlink creates a hard link.

The function unlink creates a hard link.

Read Details

What operator is used to access a structure member through a…

What operator is used to access a structure member through a pointer?

Read Details

What is the purpose of the following code snippet? #include…

What is the purpose of the following code snippet? #include int doSomething(char *str) { int i = 0; while (*str++) { i++; } return i; } int main() { char str[] = “Hello”; printf(“%d\n”, doSomething(str)); return 0; }

Read Details

The function fgetc reads the next character from a file.

The function fgetc reads the next character from a file.

Read Details

Which of the following is a correct way to declare a structu…

Which of the following is a correct way to declare a structure with a bit field?

Read Details

Structures can be passed to functions by value only.

Structures can be passed to functions by value only.

Read Details

What does the following code snippet demonstrate? #include…

What does the following code snippet demonstrate? #include #include int main() { FILE *fp; fp = fopen(“test.txt”, “a”); if (fp == NULL) { printf(“File not found\n”); return 1; } fprintf(fp, “Doing something with this line.”); fclose(fp); return 0; }

Read Details

Posts pagination

Newer posts 1 … 44,918 44,919 44,920 44,921 44,922 … 82,955 Older posts

GradePack

  • Privacy Policy
  • Terms of Service
Top