hello freinds next week my interview in reliance,nybody has
an idea about it intervew questions..so tell
Answer / Ankit Sharma
Unfortunately, I cannot predict the exact interview questions for your specific situation. However, you can prepare for common interview questions related to your position and expected competencies such as problem-solving skills, teamwork, communication, and technical knowledge.
| Is This Answer Correct ? | 0 Yes | 0 No |
which one of follwoing will read a character from keyboard and store in c a)c=getc() b)c=getchar() c)c=getchar(stdin) d)getc(&c) e)none
we all know about the function overloading concept used in C++ and we all learnt abt that.... but that concept is already came in C in a very smaller propotion ... my question is IN WHICH CONCEPT THERE IS A USE OF FUNCTION OVERLOADING IS USED in C language?????????????
1,1,5,17,61,217,?,?.
Write a program to find minimum between three no.s whithout using comparison operator.
What should not contain a header file?
void main() { int x=25,y=32; clrscr(); x=x++ + y++; y=++x + ++y; printf("%d%d",x,y); }
Is c call by value?
How can you increase the size of a dynamically allocated array?
Can we declare variable anywhere in c?
Write a program to display all the prime nos from 1 to 1000000, your code should not take time more than a minute to display all the nos.
what will be the output of "printf("%d%d",scanf("%d% d",&a,&b))".provide an explation regarding the question
Please list all the unary and binary operators in C.