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 5325"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 35291write 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 3723how can i print "hello".please consider inverted commas as well.i want to print on console: "hello"
4 12350how 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 3815
When is a void pointer used?
Explain what are the different data types in c?
Explain function?
Are pointers integers in c?
How to get string length of given string in c?
How many bytes is a struct in c?
How to draw the flowchart for structure programs?
string reverse using recursion
What are the standard predefined macros?
What is the difference between char array and char pointer?
a number whose only prime factors are 2,3,5, and 7 is call humble number,,write a program to find and display the nth element in this sequence.. sample input : 2,3,4,11,12,13, and 100.. sample output : the 2nd humble number is 2,the 3rd humble number is 3,the 4th humble number is ,the 11th humble number is 12, the 12th humble number is 14, the 13th humble number is 15, the 100th humble number is 450.
What is equivalent to ++i+++j?
List some basic data types in c?
How the c program is executed?
What is the difference between struct and typedef struct in c?