Internal Marks During the session 2021-2022
Internal Marks Computer Science and Engg. Final Year Sixth Semester Cloud Comp…
Internal Marks Computer Science and Engg. Final Year Sixth Semester Cloud Comp…
Department of Computer Science and Engineering Second Year (Forth Semester) Universal Human Value Note:- Each short answ…
C Program to Calculate Difference Between Two Time Periods. #include <stdio.h> struct TIME { int se…
Type casting is a way to convert a variable from one data type to another data type. For example, if you want to store …
#include<stdio.h> #include<conio.h> void main() { int n,sum=0,m; printf("Enter a number:"…
#include <stdio.h> #include <string.h> int main() { char arr[100]; printf("Enter a string…
# include < stdio.h > int main () { int a[ 50 ], n, i, j, temp = 0 ; printf ( " Enter how many n…
#include<stdlib.h> int main ( ) { system ( "C: \\ Windows \\ System32 \\ ipconfig" ) ; retur…
#include <stdio.h> #include <conio.h> #include <dos.h> int main ( ) { struct date d ; g…
/* C programming code for binary search */ #include <stdio.h> int main ( ) { int c , first , last , m…
/*C program for Linear search */ #include <stdio.h> int main ( ) { int array [ 100 ] , search , c , n ;…
/*C Program for Matrix multiplication */ #include <stdio.h> int main ( ) { int m , n , p , q , c , d …
Switch statement The if and if-else statements permit two way branching whereas switch statement permits multiple branc…