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 5462"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 35690write 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 11304what 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 3787how can i print "hello".please consider inverted commas as well.i want to print on console: "hello"
4 12487how 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 3899
What is uint8 in c?
What is pre-emptive data structure and explain it with example?
When is a “switch” statement preferable over an “if” statement?
How can I sort a linked list?
Draw a flowchart to produce a printed list of all the students over the age of 20 in a class .The input records contains the name and age of students. Assume a sentinel value of 99 for the age field of the trailer record
What is a char c?
What is the use of typedef in structure in c?
how is the examination pattern?
Implement bit Array in C.
Compare interpreters and compilers.
What does *p++ do? What does it point to?
How do you print an address?
How many types of functions are there in c?
What is function in c with example?
What is difference between union All statement and Union?