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

a=5 a=a++/++a

Bhel,

14 20472

how to write optimum code to divide a 50 digit number with a 25 digit number??

MGM,

3213

what are two kinds of java

2 4598

? ???Mirror Mirror on the wall????????

channel V, DPI,

1 3550

IS Doon college of Engn.. has good faculty

1 3819

read an array and search an element

1 3409

list the no of files created when c source file is compiled

TCS,

9 20734

there is two conditions , 1. while using for loop for printing 1 to 50 no's simulteneous 2. while using printf functios for printing 1 to 50 no's simulteneous with or without using variables who will take more time for compiling and execution? explain in details with reason?

1 3863

what is difference between procedural language and functional language ?

Wipro,

4 10006

for questions 14,15,16,17 use the following alternatives:a.int b.char.c.string.d.float

1 5208

write the program to find multiplication of 2-D matrix??????????

1 4663

A array contains dissimilar element how can we count, and A array contains dissimilar element how can we store in another array with out repetition.

4 7603

what is event driven software and what is procedural driven software?

2518

what is the difference between char * const and const char *?

TCS,

2 7758

How to implement a packet in C

Aricent,

2849


Post New C Questions

Un-Answered Questions { C }

When would you use a pointer to a function?

1010


Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me

1914


Can stdout be forced to print somewhere other than the screen?

1020


How can I sort a linked list?

1003


How we can insert comments in a c program?

1085


write a program to rearrange the array such way that all even elements should come first and next come odd

2242


What is 1d array in c?

1046


What is the advantage of using #define to declare a constant?

1050


What are local variables c?

971


What is data types?

1038


How can I read in an object file and jump to locations in it?

997


what is the format specifier for printing a pointer value?

987


What are the types of macro formats?

1070


How do we open a binary file in Read/Write mode in C?

1201


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 ?????? */ }

2052