Cluster head selection in Wireless Sensor Network using C programming language.
No Answer is Posted For this Question
Be the First to Post Answer
main() { char a[4]="HELL"; printf("%s",a); }
Write a program to receive an integer and find it's octal equivalent. How can i do with using while loop.
Write a complete program that consists of a function that can receive two numbers from a user (M and N) as a parameter. Then print all the numbers between the two numbers including the number itself. If the value of M is smaller than N, print the numbers in ascending flow. If the value of M is bigger than N, print the numbers in descending flow. may i know how the coding look like?
main() { printf("%x",-1<<4); }
create a login program that ask username and password. if you input username or password 3 times wrong, the program will terminate else the program will prompt a message "congratulations"
How can you relate the function with the structure? Explain with an appropriate example.
Display the time of the system and display the right time of the other country
How to count a sum, when the numbers are read from stdin and stored into a structure?
Write a program that produces these three columns sequence nos. using loop statement Sequence nos. Squared Squared + 5 1 1 6 2 4 9 3 9 14 4 16 21 5 25 30
Write a Program that Inputs 10 Numbers in an Array and Show the Maximum Number
void main() { int c; c=printf("Hello world"); printf("\n%d",c); }
What is the output of the program given below main() { signed char i=0; for(;i>=0;i++) ; printf("%d\n",i); }