Is c++ based on c?
No Answer is Posted For this Question
Be the First to Post Answer
Is main is a keyword in c?
c pgm count no of lines , blanks, tabs in a para(File concept)
write a programming in c language, 1 3 5 7 9 11
Is it possible to run using programming C for Java Application?
main() { struct s1 { char *str; struct s1 *ptr; }; static struct s1 arr[] = { {"Hyderabad",arr+1}, {"Bangalore",arr+2}, {"Delhi",arr} }; struct s1 *p[3]; int i; < BR> for(i=0;i<=2;i++) p[i] = arr[i].ptr; printf("%s ",(*p)->str); printf("%s ",(++*p)->str); printf("%s ",((*p)++)->str); }
write a program in c language for the multiplication of two matrices using pointers?
Write a code to determine the total number of stops an elevator would take to serve N number of people.
What is the basic structure of c?
1) There is a singing competition for children going to be conducted at a local club. Parents have been asked to arrive at least an hour before and register their children’s names with the Program Manager. Whenever a participant registers, the Program Manager has to position the name of the person in a list in alphabet order. Write a program to help the Program Manager do this by placing the name in the right place each time the Program Manger enters a name. 2) the Event Manager has to send participants to the stage to perform in the order in which they registered. Write a program that will help the Event Manager know who to call to the stage to perform. The Logic should be in Data Structures
How can I sort more data than will fit in memory?
void main() { int i=5; printf("%d",i++ + ++i); }
HOW TO FIND OUT THE RREVERS OF A GIVEN DIGIT NUMBER IF IT IS INPUT THROUGH THE KEYBORD BY USING C LANGUAGE