any "C" function by default returns an
a) int value
b) float value
c) char value
d) a & b
No Answer is Posted For this Question
Be the First to Post Answer
Determine the result of performing two successive block transfers into the same area of a frame buffer using the binary arith operations
What will be result of the following program? void myalloc(char *x, int n) { x= (char *)malloc(n*sizeof(char)); memset(x,\0,n*sizeof(char)); } main() { char *g="String"; myalloc(g,20); strcpy(g,"Oldstring"); printf("The string is %s",g); } a) The string is : String b) Run time error/Core dump c) The string is : Oldstring d) Syntax error during compilation e) None of these
write a recursive program in'c'to find whether a given five digit number is a palindrome or not
how to impliment 2 or more stacks in a single dimensional array ?
What are reserved words?
How to write in a function declaration and in function call in which the function has 'n' number of varible or arguments?
Write a program to enter the name and age. If age>28 then find salary categories. if age<28 then find that you are gaduate or not.
What is the difference between constant pointer and constant variable?
my name is nani i completed my b-tech in hyd now i want go for interveiw but i dont know the process of software field interveiws plz help me anyone how many rouds there n what rounds plz plz plz help me n where i can get these details
Sir,please help me out with the code of this question. Write an interactive C program that will encode or decode multiple lines of text. Store the encoded text within a data file, so that it can be retrieved and decoded at any time. The program should include the following features: (a) Enter text from the keyboard, encode the text and store the encoded text in a data file. (b) Retrieve the encoded text and display it in its encoded form. (c) Retrieve the encoded text, decode it and then display the decoded text. (d) End the computation. Test the program using several lines of text of your choice.
What does & mean in scanf?
What is the difference between near, far and huge pointers?