Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

C Interview Questions
Questions Answers Views Company eMail

How does memset() work in C?

2 850

What is the difference between exit() and _exit()?

2 911

What are dynamically linked and statically linked libraries?

2 846

How does the assert() function work?

2 1023

What is the purpose of the fflush() function in C?

2 949

What is the difference between fork() and vfork()?

2 962

What are signals in C?

2 854

What is a Deque?

2 1092

Which sorting algorithm is the best?

1 958

How does variable declaration affect memory?

1 965

How do you determine if a string is a palindrome?

1 1145


Post New C Questions

Un-Answered Questions { C }

What is c method?

948


How can I automatically locate a programs configuration files in the same directory as the executable?

1119


How many levels deep can include files be nested?

1112


What is volatile variable in c with example?

1006


printf(), scanf() these are a) library functions b) userdefined functions c) system functions d) they are not functions

1112


If I have a char * variable pointing to the name of a function ..

1141


What does %p mean c?

1024


Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given

3025


please give me a VIRTUSA sample palcement papers.... you will only send TECHNICAL SECTION..... that is help for me Advance Thanks........................

1973


What does s c mean on snapchat?

1054


List the difference between a While & Do While loops?

1057


Write a C program linear.c that creates a sequence of processes with a given length. By sequence it is meant that each created process has exactly one child. Let's look at some example outputs for the program. Here the entire process sequence consists of process 18181: Sara@dell:~/OSSS$ ./linear 1 Creating process sequence of length 1. 18181 begins the sequence. An example for a sequence of length three: Sara@dell:~/OSSS$ ./linear 3 Creating process sequence of length 3. 18233 begins the sequence. 18234 is child of 18233 18235 is child of 18234 ........ this is coad .... BUt i could not compleate it .....:( #include #include #include #include int main(int argc, char *argv[]) { int N; pid_t pid; int cont; if (argc != 2) { printf("Wrong number of command-line parameters!\n"); return 1; } N = atoi(argv[1]); printf("Creating process sequence of length %d.\n",N); printf("%d begins the sequence.\n",getpid()); /* What I have to do next ?????? */ }

2049


What is header file in c?

1031


Which programming language is best for getting job 2020?

998


How can I write functions that take a variable number of arguments?

1093