Xiaomi to launch Mi 11X series on April 23 in India
Mi 11X could be powered by Snapdragon 870 processor
Mi 11 Ultra also confirmed to launch on April 23 in India

slip 3 q2#include<stdio.h>
#include<sys/types.h>
#include<dirent.h>
#include<sys/stat.h>
int main(int argc,char *argv[])
{
int i;
struct stat st;
for(i=0;i<argc;i++)
{
stat(argv[i],&st);
if(S_ISDIR(st.st_mode))
printf("\n type of the file %s is directory",argv[i]);
else if(S_ISREG(st.st_mode))
printf("\n type of the file is %s regular file",argv[i]);
else
printf(" other than directory or regular file");
}
return 0;
}
slip 6and 3 q1
/atexit()
#include <stdio.h>
#include <stdlib.h>
void functionA ()
{
printf("This is functionA\n");
}
int main ()
{
/* register the termination function */
atexit(functionA );
printf("Starting main program...\n");
printf("Exiting main program...\n");
return(0);
}
slip 5 q1
#include<stdio.h>
#include<sys/stat.h>
#include<string.h>
int main()
{
char fname[20];
struct stat buff;
printf("\n enter file to check size");
scanf("%s",fname);
stat(fname,&buff);
printf("\nsize of %s file is %ld byte",fname,buff.st_size);
return 0;
}
slip 6 q2
include<stdio.h>
#include<dirent.h>
#include<unistd.h>
int main()
{
DIR *dp;
int cnt=0;
dp=opendir(".");
struct dirent *dent;
while((dent=readdir(dp))!=NULL)
{
printf("\nfile=%s",dent->d_name);
cnt++;
}
printf("\n total number files is %d",cnt);
}
slip 1 q 2
#include<stdio.h>
#include<sys/stat.h>
int main(int argc,char *argv[])
{
struct stat buff;
for(int i=1;i<argc;i++)
{
stat(argv[i],&buff);
printf("\n file=%s inode=%ld",argv[i],buff.st_ino);
}
}
Xiaomi Mi 11X series confirmed to launch on April 23 in India, could be based on Redmi K40 seriesXiaomi is preparing to launch multiple phones on April 23 in IndiaWork From Anywhere Deals Get Digital Cash Card, Headset, Earbuds, WFH Kit, Speaker & more Click here to know moreAdvertisementsXiaomi Mi 11X series is confirmed to launch alongside the Mi 11 Ultra on April 23 in India. The company is gearing to announce its latest flagship smartphones in India on March 23 and it looks like we are getting a bunch of new phones in the Mi 11 lineup. The Mi 11 officially debuted back in December 2020 as the first phone powered by the Snapdragon 888 processor. This was followed by the launch of the Mi 11 Ultra, Mi 11 Lite and Mi 11i globally in March 2021.Advertisements
Xiaomi has sent out media invites for the launch of the Mi 11X series in India on March 23. Xiaomi India MD, Manu Kumar Jain and Marketing Lead Sumit Sonal have also tweeted confirming the debut of the Mi 11X series alongside the Mi 11 Ultra in India. While the exact specifications of the phones remain under wraps, it is being hinted that the upcoming phones will double down on performance, display, camera, sound, design and have been customized for India.
Xiaomi Mi 11X series is confirmed to launch alongside the Mi 11 Ultra on April 23 in India The Mi 11X and Mi 11X Pro have been rumoured previously and are expected to be based on the Redmi K40 series that launched back in February with Snapdragon 870 and Snapdragon 888 processors. Xiaomi is likely bringing those phones to India with some customizations and under a new lineup. XIAOMI MI 11X SERIES EXPECTED SPECIFICATIONSThe Xiaomi Mi 11X and Mi 11X Pro are expected to feature the same 6.67-inch Full HD+ (2400x1080 pixels) resolution Super AMOLED display. The screen has a punch-hole cutout in the centre for the selfie camera and supports upto 120Hz refresh rate which is HDR10+ certified and is topped with a layer of Gorilla Glass 5. The Mi 11X is expected to be powered by the Qualcomm Snapdragon 870 processor while the Mi 11X Pro will likely be powered by the Snapdragon 888 processor. Both phones run on Android 11 based MIUI 12. The Mi 11X series could have triple cameras on the back headlined by a 48MP primary camera on the standard model and a 64MP primary camera on the Mi 11X Pro. There’s a secondary 8MP ultra-wide-angle camera along with a 5MP macro camera. For selfies, there’s a 20MP camera on the front. The Mi 11X series is expected to be powered by a 4,520mAh battery that supports 33W fast charging out-of-the-box.
0 Comments