These are solved questions for the assignment number 1 of variable - operator - expressions ,
Q1: Write a Program to print "SALAM WORLD" on Screen.
Code:
#include <stdio.h>
int main(){
printf("SALAM WORLD");
return 0;
}
Logic & Note:
Used Printf() function to print from...