printf("%d",(printf("Hello")); What it returns?
Answer Posted / dally
It will print hello with length of 5.Because return value of
printf is length of that string.
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
number of times a digit is present in a number
What is the process to create increment and decrement stamen in c?
Do character constants represent numerical values?
What are the 4 types of functions?
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
What are derived data types in c?
In this assignment you are asked to write a multithreaded program to find the duplicates in an array of 10 million integers. The integers are between -5000,000 to 5000,000 and are generated randomly. Use 10 threads, each thread works on 1000,000 integers. Compare the time needed to accomplish the task with single thread of execution program. Do not include the time to fill the array with integers in the execution time.
What are void pointers in c?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
What is sizeof in c?
Why do we need volatile in c?
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
Write an algorithm for implementing insertion and deletion operations in a singly linked list using arrays ?
Explain the difference between #include "..." And #include <...> In c?
Why do we use pointer to pointer in c?