Hello World C Problem
In this post, we will give some problems which are based on our Hello World Program in C post. Please try to solve these problems by yourself before googling or looking at our solutions.
In this post, we will give some problems which are based on our Hello World Program in C post. Please try to solve these problems by yourself before googling or looking at our solutions.
- Write a C program that prints your name
Output:
Name: Your Name
Solution
2. Write a C program that prints your name, school/college name, branch
Output:
Name: Your Name
School/College Name: Your School/College Name
Branch: Your Branch
Solution
Note: For newline you can you can '\n'.
Example: printf("Hello World\n")
Comments
Post a Comment