What is array of structure in c programming?
No Answer is Posted For this Question
Be the First to Post Answer
Explain about the constants which help in debugging?
Write a simple program to find the size of different basic data types in C.
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
Which is better malloc or calloc?
What is scope and lifetime of a variable in c?
What is the scope of static variables?
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
How to write a program for swapping two strings without using 3rd variable and without using string functions.
Tell me when would you use a pointer to a function?
What are the uses of null pointers?
which operator is known as dummy operator in c?
What is volatile variable in c?