i want to know the procedure of qualcomm for getting a job
through offcampus
Answer / Roshi Gupta
To find the procedure for applying for a job at Qualcomm off-campus, you can visit their careers page (https://www.qualcomm.com/careers). From there, you can search for open positions and follow the application instructions provided.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference between the expression “++a” and “a++”?
What is the difference between the local variable and global variable in c?
What is the difference between exit() and _exit()?
how to write a cprogram yo get output in the form * *** ***** ******* ********* ******* ***** *** *
24.what is a void pointer? 25.why arithmetic operation can’t be performed on a void pointer? 26.differentiate between const char *a; char *const a; and char const *a; 27.compare array with pointer? 28.what is a NULL pointer? 29.what does ‘segmentation violation’ mean? 30.what does ‘Bus Error’ mean? 31.Define function pointers? 32.How do you initialize function pointers? Give an example? 33.where can function pointers be used?
what is the use of bitfields & where do we use them?
why division operator not work in case of float constant?
void main() { int s[4][2]={ {1234,56},{1212,33},{1434,80},{1312,78} }; int (*p)[2]; int i,j,*pint; for(i=0;i<=3;i++) { p=&s[i]; pint=p; printf("\n"); for(j=0;j<=1;j++) printf("%d",*(pint+j)); } } while running this program it shows a warning-suspicious pointer conversion ie pint=p; my que is why should we assign the value of p to pint again.why cant we use it directly as *(p+j)..but if i use like tat the o/p is garbage value..
Program to simulate second clock
What is #ifdef ? What is its application?
Why does not use getgh(); and <conio.h> in c language.
Write a function in c to find the area of a triangle whose length of three sides is given.