What is the difference between exit() and _exit() function in c?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> main() { int a=1; int b=0; b=++a + ++a; printf("%d %d",a,b); }
implement NAND gate logic in C code without using any bitwise operatior.
what is the difference b/w compiler and debugger?
provide an example of the Group by clause, when would you use this clause
What character terminates all strings composed of character arrays? 1) 0 2) . 3) END
Can i use “int” data type to store the value 32768? Why?
What does nil mean in c?
write a program to swap two numbers without using temporary variable?
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; } }
Struct(s) { int a; long b; } Union (u) {int a; long b; } Print sizeof(s)and sizeof(u) if sizeof(int)=4 and sizeof(long)=4
# define x=1+4; main() { int x; printf("%d%d",x/2,x/4); }
Write a C program to perform some of the operation which can be performed using Single linked list