What is derived datatype in c?
No Answer is Posted For this Question
Be the First to Post Answer
What is the meaning of c in c language?
How can you allocate arrays or structures bigger than 64K?
void main() { int a=1; while(a++<=1) while(a++<=2); }
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
What is gets() function?
what is a headerfile?and what will be a program without it explain nan example?
if the address of a[1,1] and a[2,1] are 1000 and 1010 respectively and each occupies 2 bytes then the array has been stored in what order?
4 Answers Amazon, Apple, Bata, Google, NASA,
Write a program that takes a 5 digit number and calculates 2 power that number and prints it
what does exit() do?
Write a c program to find, no of occurance of a given word in a file. The word is case sensitive.
What is pointers in c?
write a code for large nos multilication (upto 200 digits)