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 5328"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 35304write 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 11155what 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 3725how can i print "hello".please consider inverted commas as well.i want to print on console: "hello"
4 12357how 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 3821
What is data structure in c programming?
What is a constant and types of constants in c?
How do we print only part of a string in c?
What are the types of unary operators?
You are to write your own versions of strcpy() and strlen (). Call them mystrcpy() and mystrlen(). Write them first as code within main(), not as functions, then, convert them to functions. You will pass two arrays to the function in the case of mystrcpy(), the source and target array.
List at least 10 sorting methods indicating their average case complexity, worst case complexity and best case complexity.
What is the maximum length of an identifier?
How was c created?
Explain the use of 'auto' keyword
What is actual argument?
What is hashing in c language?
How can I write a function analogous to scanf?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
Can a function argument have default value?
What is keyword with example?