Mar

04

 
 
 

 
 
 #include<stdio.h>
 void main(){
 //printf("Eneter a number:");
 int i=10;
 int *p=&i;
 printf("%d\n",i);
 printf("%d\n",&i);
 printf("%d\n",&p);
 printf("%d\n",p);
 printf("%d\n",*p);
 }
 #include<stdio.h>
 void main(){
 int i=10;
 int *p=&i;
 *p=20;
 printf("%d\n",i);
 printf("%d\n",*p);
 }
 #include<stdio.h>
 void main(){
 int i=10;
 int *p;
 p=&i;
 //int *p=&i;
 *p=20;
 i=*p+20;
 printf("%d\n",i);
 printf("%d\n",*p);
 }
 #include<stdio.h>
 void ch(int n){
       n=n+10;
       printf("Hello ch(%d)\n",n);
 }
 void main(){
       int a=60;
 ch(a);
 printf("a=%d\n",a);
 }
 #include<stdio.h>
 void ch(int *n){
       *n=*n+10;
       printf("Hello ch(%d)\n",*n);
 }
 void main(){
       int a=60;
 ch(&a);
 printf("a=%d\n",a);
 }
 #include<stdio.h>
 void ch(int *n){
       *n=*n+10;
       printf("Hello ch(%d)\n",*n);
 }
 void main(){
       int a=60;
 ch(&a);
 a=a+10;
 printf("a=%d\n",a);
 }
 #include<stdio.h>
 void main(){
       int num=20;
       //int *ptr=#
       int *ptr;
       ptr=#
       printf("num=%d\n",num);
       printf("*ptr=%d\n",*ptr);
       num=num*5;
       *ptr=*ptr+100;
       printf("num=%d\n",num);
       printf("*ptr=%d\n",*ptr);
       printf("Address of num=%d\n",&num);
       printf("Address of num=%d\n",ptr);
       printf("Address of ptr=%d\n",&ptr);
 }
 #include<stdio.h>
 void main(){
       int num1=20;
       int num2=50;
       int *ptr;
       printf("value of num1=%d\n",num1);
       printf("value of num2=%d\n",num2);
       ptr=&num1;
       num1=num2;
       num2=*ptr;
       printf("value of num1=%d\n",num1);
       printf("value of num2=%d\n",num2);
 }
 #include<stdio.h>
 void main(){
       int num1=20;
       int num2=50;
       int ptr;
       printf("value of num1=%d\n",num1);
       printf("value of num2=%d\n",num2);
       ptr=num1;
       num1=num2;
       num2=ptr;
       printf("value of num1=%d\n",num1);
       printf("value of num2=%d\n",num2);
 }
 #include<stdio.h>
 void main(){
       int num;
       int *ptr;
       ptr=#
       printf("Enter a Number:");
       scanf("%d",ptr);
       printf("Square of Number is %d\n",(*ptr * *ptr));
 }
  
 #include<stdio.h>
 #include<stdlib.h>
 void main(){
       int *ptr;
       ptr=(int*) malloc(sizeof(int));
       printf("Enter a Number:");
       scanf("%d",ptr);
       printf("Square of Number is %d\n",(*ptr * *ptr));
 }
  
 #include<stdio.h>
 #include<stdlib.h>
 int swap1(int n1,int n2){
       int tmp=n1;
       n1=n2;
       n2=tmp;
 }
 int swap2(int *n1,int *n2){
       int tmp=*n1;
       *n1=*n2;
       *n2=tmp;
 }
 void main(){
       int a,b;
       printf("Enter two numbers:\n");
       scanf("%d%d",&a,&b);
       printf("a=%d \t b=%d \n",a,b);
       swap1(a,b);
       printf("a=%d \t b=%d \n",a,b);
       swap2(&a,&b);
       printf("a=%d \t b=%d \n",a,b);
 }
  
 #include<stdio.h>
 void main(){
       int n;
       int *ptr;
       ptr=&n;
       printf("Enter a number: \n");
       scanf("%d",ptr);
       printf("Square is: %d",*ptr * *ptr);
 }
 #include<stdio.h>
 void main(){
       int *ptr;
       ptr=(int*) malloc(sizeof(int));
       printf("Enter a number: \n");
       scanf("%d",ptr);
       printf("Sum is: %d",*ptr + *ptr);
 }
 #include<stdio.h>
 #include<stdlib.h>
 void main(){
       int *ptr1,*ptr2;
       ptr1=(int*) malloc(sizeof(int));
       ptr2=(int*) malloc(sizeof(int));
       printf("Enter two number: \n");
       scanf("%d",ptr1);
       scanf("%d",ptr2);
       printf("Sum is: %d",*ptr1 + *ptr2);
 }
 #include<stdio.h>
 #include<stdlib.h>
 void main(){
       char *ptr1;
       ptr1=(char*) malloc(sizeof(char));
       printf("Enter A char: \n");
       scanf("%c",ptr1);
       printf("Char is: %c",*ptr1);
 }
 #include<stdio.h>
 #include<stdlib.h>
 void main(){
       char *ptr1;
       ptr1=(char*) malloc(sizeof(char));
       printf("Enter A char: \n");
       scanf("%c",ptr1);
       printf("Char is: %c",*ptr1);
 }
   

Nov

30

MODEL PAPER OF OBJECT ORIENTED PROGRAMMING USING C++ FOR BCA-III SEMESTER (BCA-S201T)

Prepare all questions without any choice. Some of them will definitely be asked in your semester Exam either directly or indirectly.

Nov

30

TECHNO-10

Sorreal Systems Pvt. Limited, New Delhi in association with School of Management Sciences, Varanasi has started a unique software development centre at the campus of SMS- Varanasi. As its first initiative, this centre has announced “Techno-10: Software Trainee Program” which will run under the banner of the LiveWire – Technical Club.

The aim of this program is to transform 10 software trainees as software engineers, equipped with the contemporary knowledge and tools of IT, who will be ready to be inducted in the IT industry. The key objectives of this programme are:

  1. To develop the analytical techno brain.
  2. To provide real time problem solving exposure using cutting edge technologies.
  3. To build up the ability to manage work pressure.
  4. To understand the SDLC process practically.

Who can join?

Only those students who are appearing MCA 5th Sem Exam and will move to MCA 6th Sem of any institution/ college.

Key benefits of the programs:

  1. Sharpen the technical skills
  2. Students will equip with solution of IT industry demand.
  3. Chance to work on real time environment.
  4. Deployment of projects on real time servers accessible from any nook and corner of world.
  5. Fulfill the MCA 6th sem student’s industrial project requirement.
  6. Chance to grab such opportunity in Varanasi.

How many seats?

Only 10 Software trainees’ seats

How to apply?

Interested students are required to fill the form

CLICK TO ENROLL IN TECHNO-10

What is selection process?

  • Candidates will appear in online examination (technical).
  • Short listed candidate will face interview round.
  • 10 final software trainees will be announced.

Important Dates:

Last Date to apply:                                          30th December 2018
Online Examination (Technical) Date:      13th January 2019
Interview Date:                                               13th January 2019
Final List Announcement:                            15th January 2019
TECHNO -10 Start Date:                               22nd January 2019

Venue of selection process & execution of TECHNO-10 Program:

Software Development Centre, Sorreal Systems at School of Management Sciences, Varanasi Campus

Program Fee:

INR 7,000/-

For Any Enquiry Contact:

Ram Gopal Gupta, Coordinator, LiveWire-Technical Club, SMS Varanasi.
9839424526
[email protected], [email protected]
Website: www.sorrealsystems.com, www.smsvaranasi.com

Techno-10 PDF DOWNLOAD

Nov

30

XML notes for MCA -III Sem (WT)

Unit-1 Note for MCA-III (WT)

Nov

28

PHP File Uploading (27.11.2018)

Nov

26

PHP DB Application with Session Handling (26.11.2018)

Nov

19

PHP MYSQL Code to Fetch Record from DB dated 17.11.2018

PHP MYSQL Code to Delete & Fetch Record from DB dated 17.11.2018

Nov

13

CLICK TO DOWNLOAD PHP Code for MYSQL DB Insert

Jun

11

Check you email ID. I had shared a google drive link.
you can download codes from there.
Thanks

Filled Under: General

Mar

28

I have attached PPTs related to Cyber Security topics. All these PPTs are searched from Google and downloaded from different websites, which are places here according to Cyber Security topics. It may help you understand better the Cyber Security related content.

Feb

12

CUI Menu Based Java Program Sample

//—————–T45.java———————-

import java.io.*;
class T45{
public static void main(String args[]){
Console c=System.console();
int mn;
String ch;
do{
System.out.println(“\t\t :: Main Menu ::”);
System.out.println(“1- Get the Area of Square”);
System.out.println(“2- Get the Area of Rectangle”);
mn=Integer.parseInt(c.readLine(“Enter Your choice: “));
switch(mn){
case 1: {
//System.out.println(“case 1 executed”);
Square obj=new Square();
obj.area();
break;
}
case 2:{
//System.out.println(“case 2 executed”);
Rect obj=new Rect();
obj.area();
break;
}
default: System.out.println(“Invalid Choice”);
}
ch=c.readLine(“Do you want to continue(y/n): “);
}while(ch.equalsIgnoreCase(“y”));
}
}

//—————–Square.java———————-

import java.io.*;
class Square{
int a, area;
Console c=System.console();
void area(){
a=Integer.parseInt(c.readLine(“Enter length of square: “));
area=a*a;
System.out.println(“SQ Area is: “+area);
}
}

//—————–Rect.java———————-

import java.io.*;
class Rect{
int n1,n2, area;
Console c=System.console();
void area(){
n1=Integer.parseInt(c.readLine(“Enter width of rect: “));
n2=Integer.parseInt(c.readLine(“Enter height of rect: “));
area=n1*n2;
System.out.println(“Rect Area is: “+area);
}
}

Dec

03

SERVLET SAMPLE Codes for BCA-V (2017), MGKVP Uinversity

Dec

03

JSP SAMPLE Codes for BCA-V (2017), MGKVP Uinversity