What are keywords in c with examples?
No Answer is Posted For this Question
Be the First to Post Answer
consagous technology placement paper
void main() { int a=1; while(a++<=1) while(a++<=2); }
What are the average number of comparisons required to sort 3 elements?
how to use showbits function?
how can I convert a string to a number?
How does C++ help with the tradeoff of safety vs. usability?
What is the memory allocated by the following definition ? int (*x)[10];
What character terminates all strings composed of character arrays? 1) 0 2) . 3) END
Program to write some contents into a file using file operations with proper error messages.
What is the output for the following program #include<stdio.h> main() { char a[5][5],flag; a[0][0]='A'; flag=((a==*a)&&(*a==a[0])); printf("%d\n",flag); }
44.what is the difference between strcpy() and memcpy() function? 45.what is output of the following statetment? 46.Printf(“%x”, -1<<4); ? 47.will the program compile? int i; scanf(“%d”,i); printf(“%d”,i); 48.write a string copy function routine? 49.swap two integer variables without using a third temporary variable? 50.how do you redirect stdout value from a program to a file? 51.write a program that finds the factorial of a number using recursion?
What should malloc(0) do?