C Programming Solution, Conditional, Looping, Array, Pointer, Structure, File Handling, Linked List Problem Solution in C Language. Specifically Created for Students of Gujarat Technological University (GTU) subject code 2110003.
How to Draw Context Level DFD
-
dfd level 0 types of data flow diagram data flow diagram symbols context
diagram context diagram example with explanation data flow diagram tutorial
pd...
C Program Hello World
Get link
Facebook
X
Pinterest
Email
Other Apps
/*Write a Program to display “Hello World” on the screen.*/ #include <stdio.h> int main(void) { printf("Hello World"); return 0; }
/* Write a program that uses a table of integers whose size will be specified interactively at runtime. */ #include <stdio.h> #include <stdlib.h> int main() { int *p; int n,i; printf("\nEnter the size of table : "); scanf("%d",&n); if((p = (int*)malloc(n *sizeof(int))) == 0) { printf("\n No space available"); exit(1); } else { printf("\n %ld Bytes Space are allocated Successfully", n * sizeof(int)); } for(i=0;i<n;i++) { printf("Enter Value for Position : [%d]",i+1); scanf("%d",(p+i)); } printf("\n Values in Reverse \n "); for(i=n-1;i>=0;i--) ...
/* Write a program using a pointer to read an array of integer and print elements in reverse order. */ #include <stdio.h> int main(void) { int a[10],*p,i; p=a; for(i=0;i<10;i++) { printf("Enter Value for [%d] Position : ",i+1); scanf("%d",(p+i)); } for(i--;i>=0;i--) { printf("\n a[%d] = %d",i+1,*(p+i)); } return 0; }
Comments
Post a Comment