what is a far pointer
ABB, DRDO, ITI, Maruti Suzuki, Steel Plant, TCS, Toyota, Vivo Mobiles,
12 38694what is the difference between const char *p, char const *p, const char* const p
Accenture, Aricent, CTS, Geometric Software, Point Cross, Verizon,
5 50870What is the output of the program given below
#include
What is the output of the following program
#include
What is the output for the program given below typedef enum grade{GOOD,BAD,WORST,}BAD; main() { BAD g1; g1=1; printf("%d",g1); }
4 10186Give the output for the following program. #define STYLE1 char main() { typedef char STYLE2; STYLE1 x; STYLE2 y; clrscr(); x=255; y=255; printf("%d %d\n",x,y); }
2 7158What is the output for the following program
#include
WHAT IS THE DIFFERENCE BETWEEN malloc() and calloc() in c file management?
3D PLM, Code Studio, Deltech, IBM,
28 87234
What is a memory leak? How to avoid it?
List out few of the applications that make use of Multilinked Structures?
What are header files and explain what are its uses in c programming?
What are multidimensional arrays?
What is c method?
What are local static variables? How can you use them?
What are the 5 types of organizational structures?
What tq means in chat?
Write a program to swap two numbers without using the third variable?
What does malloc () calloc () realloc () free () do?
How many levels of pointers can you have?
write an interactive C program that will encode or decode a line of text.To encode a line of text,proceed as follows. 1.convert each character,including blank spaces,to its ASCII equivalent. 2.Generate a positive random integer.add this integer to the ASCII equivalent of each character.The same random integer will be used for the entire line of text. 3.Suppose that N1 represents the lowest permissible value in the ASCII code,and N2 represents the highest permissible value.If the number obtained in step 2 above(i.e.,the original ASCII equivalent plus the random integer)exceeds N2,then subtract the largest possible multiple of N2 from this number,and add the remainder to N1.Hence the encoded number will always fall between N1 and N2,and will therefore always represent some ASCII character. 4.Dislay the characters that correspond to the encoded ASCII values. The procedure is reversed when decoding a line of text.Be certain,however,that the same random number is used in decodingas was used in encoding.
What are the types of pointers?
Is there any algorithm to search a string in link list in the minimum time?(please do not suggest the usual method of traversing the link list)
Explain how do you sort filenames in a directory?