YBJBU6
whenever a question is posted in a particular category in allinterview.com, Is there any facility to receive an indication mail. For eg: I need to receive an indication email, whenever a question is posted under the category “C Langauage”.
What is the output from this program? #include <stdio.h> void do_something(int *thisp, int that) { int the_other; the_other = 5; that = 2 + the_other; *thisp = the_other * that; } int main(void) { int first, second; first = 1; second = 2; do_something(&second, first); printf("%4d%4d\n", first, second); return 0; }
What is the use of ?: Operator?
What is the exact difference between '\0' and ""
What is bss in c?
Is the following code legal? struct a { int x; struct a b; }
What is header file in c?
What are the features of the c language?
what is the output of the following program? #include<stdio.h> void main() { float x=1.1; while(x==1.1) { printf("\n%f",x); x=x-0.1; } }
what is diference between return 0 and return NULL??
When would you use a pointer to a function?
What is external variable in c?