What is the difference between exit() and _exit() function?
No Answer is Posted For this Question
Be the First to Post Answer
What is printf () in c?
Who is the main contributor in designing the c language after dennis ritchie?
What are lookup tables in c?
What do you mean by c?
What is calloc() function?
What is a static variable in c?
#include<stdio.h> int main(){ int i=10; int *ptr=&i; *ptr=(int *)20; printf("%d",i); return 0; } Output: 20 can anyone explain how came the output is 20
How would you obtain the current time and difference between two times?
main() { char ch='356'; Printf("%d",ch); } *OUTPUT*:- -18 *Why?*
the number of measuring units from a arbitrary starting point in a record area or control block to some other point a) branching b) recording pointer c) none d) offset
What are the different data types in C?
Find MAXIMUM of three distinct integers using a single C statement