Showing posts from January, 2016
syllabus third year ( computer engineering ) course 2012 unipune | Programming Laboratory III (PL3) Assignments Group A (Mandatory) 1 Develop an application using Beeglebone Black/ ARM Cortex A5 development board to simulate the operati…
#include<stdio.h> int main ( void ) { int a = 17 ,b = 4 ; printf( "Sum=%d \n " ,a + b); printf( "Difference=%d \n " ,a - b); printf( "Product=%d \n " ,a * b); printf( "Quotient=%d \n &…
#include<stdio.h> #include<limits.h> #include<float.h> int main ( void ) { printf( "sizeof(char) = %u \n " , sizeof ( char )); printf( "sizeof(short) = %u \n " , sizeof ( short )); pri…