What is the difference between exit() and _exit() function in c?
No Answer is Posted For this Question
Be the First to Post Answer
Explain 'far' and 'near' pointers in c.
What is the meaning of && in c?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
What are the different types of endless loops?
What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }
How can I find out if there are characters available for reading?
In a switch statement, explain what will happen if a break statement is omitted?
Why can’t we compare structures?
Write a program that his output 1 12 123
identify the in correct expression a.a=b=3=4; b.a=b=c=d=0; float a=int b=3.5; d.int a; float b; a=b=3.5;
Write a C/C++ program to add a user to MySQL. The user should be permitted to only "INSERT" into the given database.
in b=6.6/a+(2*a+(3*c)/a*d)/(2/n); which operation will be performed first a) 6.6/a b) 2*a c) 3*c d) 2/n