C Lab Format
C Lab Format
Lab Assignment
Bachelor of Technology
Submitted by
Submitted to
Dr. Hemant Petwal
UPES
Bidholi, Via Prem Nagar, Dehradun, Uttarakhand
July-Dec – 2024
Lab Assignment 1
Solution:
Coding Output
#include<stdio.h>
int main()
{
printf("Hello World");
return 0; }
Question 2: Write a C program to print the address in multiple lines (new lines)
Solution:
Coding Output
#include<stdio.h>
int main()
{
printf("Ivy league
boys hostel\nNear upes
college\nDehradun
248001");
return 0; }
Question 3: Write a program that prompt the user to enter their name and age.
Solution:
Coding Output
#include<stdio.h>
int main()
{
int age,name;
Question 4: Write a C program to add two numbers, Take numbers from user.
Solution:
Coding Output
#include<stdio.h>
int main()
{
int a,b,c,y;
printf("Enter a: ");
scanf("%d",&a);
printf("Enter b: ");
scanf("%d",&b);
printf("Enter c: ");
scanf("%d",&c);
y=a+b+c;
printf("%d",y);
}