0
Give some simple practice questions in C
Beginner level I will try to solve them Analysis my program
6 Réponses
+ 6
You can check: Community>practice>code coach>View more
and filter by: Level>easy
+ 4
Hi! This is C practice for beginners: 👇
https://www.geeksforgeeks.org/c/c-exercises/?ysclid=mgoyfpyykv508113843
https://codeforwin.org/c-programming/basic-programming-practice-problems
+ 1
#include <stdio.h>
int main()
{
int n;
printf ("enter the number");
scanf("%d",&n);
if(n%2==0)
printf ("\n even");
else
printf("\n odd");
}
0
Find the number is even or odd.
Try this it's most basic
0
Siddhartha Varma very nice now try calc
0
#include <stdio.h>
int main()
{
int n,j;
printf("\n enter the number");
scanf("%d",&n);
printf ("\n enter the second number");
scanf("%d",&j);
printf ("\n sum of two is %d",n+j);
printf ("\n difference of two is %d",n-j);
printf ("\n product of two is %d" ,n*j);
printf ("\n quotoient of two is %d",n/j);
printf ("\n remider of two is %d",n%j);
}



