Programming Code (840)
Scripts_Markup Code (257) main() { int i=1; while (i<=5) { printf("%d",i); if (i>2) goto here; i++; } } fun() { here: printf("PP"); }
1 5642main() { static char names[5][20]={"pascal","ada","cobol","fortran","perl"}; int i; char *t; t=names[3]; names[3]=names[4]; names[4]=t; for (i=0;i<=4;i++) printf("%s",names[i]); }
2 16345#include
#include
CNSI,
2 12427#include
TCS,
1 9199#include
Write a python program to print table of a given number?
I am configuring my anaconda file in linux, i want to use as kickstart file, in post installation how can i edit file or change the content of file and save it.
Question 1: Implement a base class Appointment and derived classes Onetime, Daily, Weekly, and Monthly. An appointment has a description (for example, “see the dentist”) and a date and time. Write a virtual function occurs_on(int year, int month, int day) that checks whether the appointment occurs on that date. For example, for a monthly appointment, you must check whether the day of the month matches. Then fill a vector of Appointment* with a mixture of appointments. Have the user enter a date and print out all appointments that happen on that date. *This Should Be Done IN C++
create a stucture student containing field for roll no,class,year and marks.create 10 student annd store them in a file
1.Explain what happens to a session object when the browser associated with it is closed? 2.Explain how a session object is created and used. (Note: you are not required to provide the Java statements such as ‘getAttribute’)
Can we change the validator-rules.xml for our own validations in struts??
Write a C++ program without using any loop (if, for, while etc) to print prime numbers from 1 to 100 and 100 to 1 (Do not use 200 print statements!!!)
write a simple calculator c program to perform addition, subtraction, mul and div.
How a web page can communicate with a web server while a user type characters in an input field.
How do you verify if the two sentences/phrases input is an anagram using predefined functions in string.h and by using arrays?
What is SGML?
Write a python program to check if a number is an armstrong number?
How to use Client-side Script to Focus Controls in ASP.NET?
Given a string=”me,I,myself”; .Using javascript only create an array out of this string and then send a POST request to the url “record.php” without reloading the page. The post key parameters should be n1,n2 and n3 respectively.
determine which Element received an Event