int main() { int a, float b, int c; a=25; b=3.24; c=a+b*b-35; }
Query Karo Latest Questions
Poll Results
No votes. Be the first one to vote.
Participate in Poll, Choose Your Answer.
Poll Results
No votes. Be the first one to vote.
Participate in Poll, Choose Your Answer.
#include<stdio. h> int main() { int a=35; float b=3.24; printf(“%d %f %d”, a, b+1.5,235); }
#include<stdio. h>
int main()
{
int a=35; float b=3.24;
printf(“%d %f %d”, a, b+1.5,235);
}
Read lessPoll Results
No votes. Be the first one to vote.
Participate in Poll, Choose Your Answer.
Poll Results
Participate in Poll, Choose Your Answer.
#include<stdio.h> int main() { int a, b, c; scanf(“%d%d%d”, a, b, c) ; }
Poll Results
No votes. Be the first one to vote.
Participate in Poll, Choose Your Answer.
If a five digit number is input through the keyboard, write a program to calculate the sum of its digits.
If a five digit number is input through the keyboard, write a program to calculate the sum of its digits.
Read less#include<stdio.h> int main() { int m1, m2, m3 printf(“enter values of marks in 3 subjects”) scanf(“%d%d%d”, & m1, & m2, & m3) printf(“you entered %d%d%d”, m1, m2, m3) }
#include<stdio.h>
int main()
{
int m1, m2, m3
printf(“enter values of marks in 3 subjects”)
scanf(“%d%d%d”, & m1, & m2, & m3)
printf(“you entered %d%d%d”, m1, m2, m3)
}
Read less