What is the best organizational structure?
No Answer is Posted For this Question
Be the First to Post Answer
What is C++
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list
print the table 5 in loops
what is the basis for selection of arrays or pointers as data structure in a program
suppose we use switch statement and we intilize years name using enum statement like(jan,feb,mar,------dec) we take integer value as an input .question is that the month which we analyz is from 0 to 11 bt if i enter 12 than how he again starts from begning and print jan
What is Heap?
What will be the result of the following program? char*g() { static char x[1024]; return x; } main() { char*g1="First String"; strcpy(g(),g1); g1=g(); strcpy(g1,"Second String"); printf("Answer is:%s", g()); } (A) Answer is: First String (B) Answer is: Second String (C) Run time Error/Core Dump (D) None of these
Explain the use of fflush() function?
how can I convert a string to a number?
WHAT IS MEANT BY LIFE?
Finding first/last occurrence of a character in a string without using strchr( ) /strrchr( ) function.
What does the && operator do in a program code?