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 5474"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 35716write 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 11314what 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 3795how can i print "hello".please consider inverted commas as well.i want to print on console: "hello"
4 12499how 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 3908
What is the return type of sizeof?
How do you convert a decimal number to its hexa-decimal equivalent.Give a C code to do the same
console I/O functions means a) the I/O operations done on disk b) the I/O operations done in all parts c) the input given through keyboard is displayed VDU screen d) none of the above
How can I call fortran?
find the value of y y = 1.5x+3 for x<=2 y = 2x+5 for x>2
if p is a string contained in a string?
What is extern keyword in c?
Why we use void main in c?
What is an array in c?
State the difference between x3 and x[3].
How can you allocate arrays or structures bigger than 64K?
Which operators cannot be overloaded a) Sizeof b) .* c) :: d) all of the above
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
An application package has been provided to you without any documents for the following application. The application needs to be tested. How will you proceed?
Array is an lvalue or not?