⟩ How to get the sum of two integers?
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int i,j,sum;
printf("enter two numbers");
scanf("%d%d",&i,&j);
sum=i+j;
printf("sum=%d",sum);
}
#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int i,j,sum;
printf("enter two numbers");
scanf("%d%d",&i,&j);
sum=i+j;
printf("sum=%d",sum);
}
Tell me what are the notifications available in android?
Explain me the resource that is a compiled visual resource and can be used as a background, title, or in other part of the screen?
Do you know what is viewGroup in android?
Tell me what is the APK format?
Tell me how to update UI from a service in android?
Tell me how many dialog boxes do support in android?
Tell me which kernal is used in android?
How to deploy executable JARs on Android? Which packaging is supported by Android?
Explain what is an ANR notification in Android?
Tell me what does the intent filter do in android?