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 5343"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 35345write 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 11170what 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 3729how can i print "hello".please consider inverted commas as well.i want to print on console: "hello"
4 12366how 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 3826
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
What is array of pointers to string?
Explain what is the difference between the expression '++a' and 'a++'?
What language is windows 1.0 written?
Why main is used in c?
What is the value of a[3] if integer a[] = {5,4,3,2,1}?
Difference between pass by reference and pass by value?
A collection of functions,calls,subroutines or other data a) library b) header files c) set of files d) textfiles
How can I manipulate strings of multibyte characters?
What is equivalent to ++i+++j?
hi to every one .. how to view table pool after creating the pooled table? plz help me.. if any knows abt this ..
What are global variables and explain how do you declare them?
Why main is not a keyword in c?
Can a pointer be null?
What is an lvalue?