Is Exception handling possible in c language?
No Answer is Posted For this Question
Be the First to Post Answer
What do you mean by Recursion Function?
Create a simple code fragment that will swap the values of two variables num1 and num2.
how can I convert a string to a number?
how to return 1000 variables from functio9n in c?plz give me code also
what will be the result of the following program ? char *gxxx() { static char xxx[1024]; return xxx; } main() { char *g="string"; strcpy(gxxx(),g); g = gxxx(); strcpy(g,"oldstring"); printf("The string is : %s",gxxx()); } a) The string is : string b) The string is :Oldstring c) Run time error/Core dump d) Syntax error during compilation e) None of these
Explain the concept and use of type void.
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
int a[3][5]={ {1,2,3,4,5],{2,3,4,5,6},{10,11,12,13,14}}; int *p=&a; printf(ā%dā,*(*(x+1)+3));
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
2 Answers Aricent, Manipal University,
Does sprintf put null character?
Write a Program to find whether the given number or string is palindrome.
Is calloc better than malloc?