Explain About fork()?
No Answer is Posted For this Question
Be the First to Post Answer
What is the code for 3 questions and answer check in VisualBasic.Net?
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
Explain what happens if you free a pointer twice?
What is character constants?
What are the different types of linkage exist in c?
What are the uses of pre-processor directives?
write a c program to convert fahrenheit to celsius?
What is a struct c#?
What are keywords in c with examples?
Explain the meaning of keyword 'extern' in a function declaration.
Can include files be nested?
create an SINGLE LINKED LISTS and reverse the data in the lists completely