what will be the output of the following program, justify? #define TEST int TEST getdata() { static i; i+=10; return i; } main() { int k; k = getdata(); }
3 5210"I LOVE MY COUNTRY" write a c program to get "COUNTRY MY LOVE I" as the output. Use any other programming language. It is not mandatory to use C.
11 34877write a program to sum of its digit with using control structure or with out using loop. for ex: let the number is 25634 then answer will be=2+5+6+3+4=20
4 11000what would be the output of the following prog? Justify your answer? main() { unsigned char ch; unsigned char i; ch = -255; printf("%d",ch); i = -1; printf("%d",i); }
1 3658how can i print "hello".please consider inverted commas as well.i want to print on console: "hello"
4 12204how can i get the string which is having two spaces at the end.suppose the string is "Hello World ".Now at the end i have two spaces.i need to print with that spaces .
1 3736
Explain what is dynamic data structure?
What is an example of structure?
What are types of functions?
Where static variables are stored in memory in c?
What are the advantages of external class?
Why dont c comments nest?
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.
code for replace tabs with equivalent number of blanks
Why is not a pointer null after calling free?
What is const volatile variable in c?
What are local static variables?
What is unsigned int in c?
What is double pointer in c?
What is difference between Structure and Unions?
What is pointer and structure in c?