Answer Posted / abhinendra bhadauriya
main is an thread which create process in the memory with the help of operating system
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Can math operations be performed on a void pointer?
What is a string?
how to write optimum code to divide a 50 digit number with a 25 digit number??
What are the primitive data types in c?
What is the size of enum in bytes?
the factorial of non-negative integer n is written n! and is defined as follows: n!=n*(n-1)*(n-2)........1(for values of n greater than or equal to 1 and n!=1(for n=0) Perform the following 1.write a c program that reads a non-negative integer and computes and prints its factorial. 2. write a C program that estimates the value of the mathematical constant e by using the formula: e=1+1/!+1/2!+1/3!+.... 3. write a c program the computes the value ex by using the formula ex=1+x/1!+xsquare/2!+xcube/3!+....
write a program to create a sparse matrix using dynamic memory allocation.
What is #line in c?
What is bubble sort in c?
What is function in c with example?
why we wont use '&' sing in aceesing the string using scanf
What's the right way to use errno?
What is pre-emptive data structure and explain it with example?
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
#include main() { char s[] = "Bouquets and Brickbats"; printf(" %c, ",*(&s[2])); printf("%s, ",s+5); printf(" %s",s); printf(" %c",*(s+2)); }