saving . . . saved Assignment 1 has been deleted. Assignment 1 has been hidden .
Assignment 1
Title
Question
//welcome to the world of c
#include<stdio.h>
int main() 
{
   Printf("welcome to the world of c") ;
   return 0;



C-and-Cpp First-C-Program 11-12 min 0-10 sec 10-07-20, 12:23 p.m. Mchavan

Answers:

//Assignment 1

// welcome to the world of c

#include<stdio.h>
int main()
{
  printf("welcome to the world of c ");
  return 0;
}

/*Output
welcome to the world of c
*/

Ans:-    If \n is not included in printf statement cursor will blink on that line only and next statements will be printed on the same line


10-07-20, 1:01 p.m. Anuja_Pande
Assignment 1

// welcome to the world of c

#include<stdio.h>
int main()
{
  printf("welcome to the world of c ");
  return 0;
}

/*Output
welcome to the world of c
*/

11-07-20, 9:40 a.m. S19_bansode_pooja@mgmcen.ac.in

Login to add comment


/*Welcome to the World of C*/
      #include<stdio.h>
      int main()
      {
          printf("Welcome to the World of C");
           return 0;
       }
   
           // Output : Welcome to the World of C
                           
            Ans:  Cursor will blink on that line only
     




10-07-20, 4:47 p.m. Saili_patil


 // Assignment 1

 #include<stdio.h>
 int main()
 {
 printf(" Welcome To The World Of C ");
 return 0;
 }
 
<span style="background-color: rgb(255, 255, 255);"> // Output: Welcome To The World Of C</span>
10-07-20, 4:52 p.m. yashbdatu


//assignment 1
#include<stdio.h>
int main()
{
  Print("welcome to the world of c");
  return 0;
}
//Output: welcome to the world of c
Ans: cursor will blink on that line only
10-07-20, 5:12 p.m. Nrk


//Assignment 1
#include<stdio.h>
int main()
{
  printf("Welcome To The World Of C");
  return 0;
}
  
 Ans: cursor will blink on the previous line and the next statements will be printed on that particular line only



10-07-20, 6:06 p.m. Soniya_motiwal


#include<stdio.h>
int main()
{
  Print("welcome to the world of c");
  return 0;
}
10-07-20, 8:26 p.m. MadhuriPotdar



// ASSIGNMENT 1
#include<stdio.h>
int main()
{
  printf("Welcome to the World of c ");
  return 0;
}

/*Output
Welcome to the World of c
*/
ANSWER = cursor blinks on that line
10-07-20, 9:31 p.m. ManasBobade23


// Assignment 1
#include<stdio.h>
int main()
{
  printf("Welcome To The World Of C");
  return 0;
}

 Ans- cursor will blink on the same line and the next statements will be printed on the same line
10-07-20, 9:48 p.m. bhaveshv


//Assignment 1
#include<studio.h>
int main()
{
print("welcome to the ");
Printf("world of c");
return 0;
}
11-07-20, 7:28 a.m. Shruti@123


/*assignment-1 second program */
#include<studio.h>
int main()
{
Printf("my name is shruti"\n);
Printf("city : nanded"\n);
return 0;
}
11-07-20, 7:37 a.m. Shruti@123


/ /ASSIGNMENT 1//
#include<stdio.h>
int main()
{
  printf("Welcome to the World of c ");
  return 0;
}

/*Output
Welcome to the World of c
*/
ANSWER = cursor blinks on that line
11-07-20, 9:48 a.m. S19_bansode_pooja@mgmcen.ac.in


/*Assignment 1*/

/*Welcome to the world of c*/

#include<stdio.h>
int main()
{
Print f("welcome to the world of c");
Return 0;
}

/*Output
Welcome to the world of c*/

Cursor will blink on that line only





11-07-20, 1:05 p.m. Mahadevi_Sambhale


//Assignment 1//
#include<studio.h>
 int main()
{
Printf("welcome to the world of c");
return 0;
}
11-07-20, 3:14 p.m. Tejaltak


//Welcome to the world of c//
#include<studio.h>
int main ()
{
     printf("Welcome to the world of c ");
      return 0;
}
   Output: Welcome to the world of c
Ans: cursor will blink on that line only then the next statement printed on the same line

11-07-20, 3:43 p.m. bamnepornima


  // Assignment -1

  #include <stdio.h>
  int main ()
  {
      Printf ("Welcome to the world of C");
      return 0;
   }
   
    /*  Output
          Welcome to the world of C
    */

    Answer: If /n is not included in the printf statement then cursor will blink on that line only and next statement will be printed on the same line.
11-07-20, 3:46 p.m. Namrata@2621


/*Assignment _ 1*/
#include<stdio.h>
int main ()
{
Printf("Welcome to the world of C");
return 0;
}
/*Output
     Welcome to the world of C
     */
Ans:.  If \n is not included in the printf 
           Statment, then curosr will blink 
           on that line only and next statment will be printed on same line.


11-07-20, 4:09 p.m. Vidhya_t


// Assignment1//
#include<stdio.h>
int main() 
{
   Printf("welcome to the world to C") ;
   return 0;
}
/*output
    Welcome to the world to C
 */
Ans: if \n is not present in printf Statment cursor will be blink on the line


11-07-20, 4:24 p.m. s19_lokade_prerna@mgmcen.ac.in


//Assignment-1//
Ans:- 
#include<studio.h>
Int main ()
{
Printf ("Welcome to the World of  C ");
return 0;
}
Output:-Welcome to the World of C


Ans:- If \n is not included in the printf statement then the new line is not operate or cursor will be blink on that line line only and  \n is sequence that represents a new line 
11-07-20, 4:25 p.m. Nikitatondchire


#include<studio.h>
Int main()
{
    Printf("Welcome to the world of C");
     return 0;
}
   Output: Welcome to the world of C
 Ans:- if \n is not included in the statement then the output will be on the first line of the screen. And curser will blink on the first line.
11-07-20, 5:09 p.m. Shaikh_Mahdiya_Husna_Zameer


// Assignment -1//
Ans-
#include<stdio.h>
int main ()
{
printf("Welcome to the world of c\n");
return 0;
}
Output :-Welcome to the world of C

Ans:- \n is not included in the printf statement after execution of the printf function the cursor doesn't move to next line. 
11-07-20, 5:11 p.m. _nikita_vinkare


// Assignment  - 1 //
#incude <studio.h>
int main ()
{
    printf( " welcome to the world of c " ) ;
     return 0 ;
   }

 * /output
  Welcome to the world of c 
  */
Answer  : if  \n is not included in our program then the cursor blinks on that same line

11-07-20, 5:25 p.m. Mansi_patankar


// Assignment 1//
Ans
#include<stdio.h>
int main()
{
  printf("Welcome to the world of c\n");
  return 0;
}
 /*Output= Welcome to the world of c */

Ans=\n is not included in the printf statement after execution of the printf function the cursor doesn't move to the new line ( next line) .\n signifies new line.
 
11-07-20, 5:26 p.m. Sakshirakhewar


//Assignment-1//
#include<studio.h>
int main()
{
    Printf("Welcome to the world of C");
     return 0;
}
   /*Output=Welcome to the world of C*/
 Ans:- if \n is not included in the statement then the output will be on the first line of the screen. And curser will blink on the first line.       
11-07-20, 5:46 p.m. Anas9764


//assignment 1
#include<stdio.h>
int main()
{
  Print("welcome to the world of c");
  return 0;
}
//Output: welcome to the world of c
Ans: cursor will blink on that line only
11-07-20, 5:54 p.m. anandpande


<hr>
 //assignment 1
 #include<stdio.h>
 Int main()
{
   Print f("welcome to the world of c");
   return 0;
}
//Output: welcome to the world of c
And: cursor will  blink on the link only.
11-07-20, 5:56 p.m. JVK2001


//assignment 1
//Welcome to the world of c
#include<stdio.h>
int main()
{
  Printf("welcome to the world of c");
  return 0;
}
//Output: welcome to the world of c
Ans: cursor will blink on that line only
11-07-20, 6:07 p.m. kunalpathak790



//assignment 1
//Welcome to the world of c
#include<stdio.h>
int main()
{
  Printf("welcome to the world of c");
  return 0;
}
//Output: welcome to the world of c
Ans: cursor will blink on that line only
11-07-20, 6:13 p.m. Pranav@123


//Assignment 1//
Ans-
#include<studio.h>
int main()
{
   Printf("welcome to the world of c");
    return 0;
}
/*Output
    Welcome to the world of c
 */
And:- cursor will blink on that line only
                                                                                                                                              
11-07-20, 6:41 p.m. 1921271372033


//Assignment 1
#include<stdio.h>
int main ()
{
Printf("Welcome to the world of C");
return 0;
}
/*Output
     Welcome to the world of C*/
     
Ans:.  If \n is not included in the printf 
           Statment, then curosr will blink 
           on that line only and next statment will be printed on same line.

11-07-20, 8:16 p.m. aishwarya@123456789


Assignment 1
#include<stdio.h>
#include<conio.h>
{
  printf("Welcome to the world of C\n");
  return 0;
}
  //output : Welcome to the world of C

  Ans: Cursor will blink on that line only.
11-07-20, 9:23 p.m. Deepraj@7219


//Assignment-1//
#include<stdio.h>
int main()
{
    printf("Welcome to the World of C");
    return 0;
}
    /*Output
     Welcome to the world of C*/
  
    Ans: If \n is not used in printf statement, curser will blink on the same line & next statement is printed on the same line.


11-07-20, 9:47 p.m. s19_shewdikar_sharvari@mgmcen.


//Assignment-1//
#include<studio.h>
int main()
{
printf("Welcome to the World of C");
}
/*Output
Welcome to the World of C*/

Ans: Cursor will blink on that line only



11-07-20, 9:58 p.m. Anurag@01


//Assignment-1//
#include<stdio.h>
int main()
{
    printf("Welcome to the World of C");
    return 0;
}
    /*Output
     Welcome to the world of C*/
  
    Ans: If \n is not used in printf statement, curser will blink on the same line & next statement is printed on the same line.
12-07-20, 4:03 p.m. Rk4


//Assignment-1

#include<stdio.h>
int main()
{
    Printf("Welcome to the World of C");
    return 0;
}
//Output :Welcome  to the World of C

Answer :if \n is not used in printf statement,cursor will blink on the same line & next statement  will get printed on the same line.
12-07-20, 6:15 p.m. Avantika.R


//Assignment :- 1//
#include<studio.h>
int main() 
{
        Printf(" Welcome to the world of C") ;
        return 0 ;
}
 
       /* Output :-" Welcome to the world of C" */
      ANS :-  " \n" is used in print f statement to print output on the next line. If "\n"  is not included in the print f  statement then, curser will blink on the same line and next statement will printed on the same line. 
        
12-07-20, 6:56 p.m. Vaishnavi9075


//Assignment-1
#include<studio.h>
int main()
{
printf("Welcome to the World of C");
}
/*Output
Welcome to the World of C*/

Ans: Cursor will blink on that line only
12-07-20, 7:01 p.m. Avi11@11


// Assignment 1
#include<stdio.h>
void main()
{
  printf("Welcome To The World Of C");
}
output-Welcome To The World Of C

 Ans- cursor will blink on the same line and the next statements will be printed on the same line
12-07-20, 10:03 p.m. Sakshi_Udgirkar


    //ASSINGMENT-1
    #inclide<studio.h>
    int main()
    {
        Printf("Welcome To The World Of C");
     }
      Output-- Welcome To The World Of C


    Ans- \n is not use then the cursor will blink on the same line and the statement will print on same line
12-07-20, 10:39 p.m. iam_anirudha_parapkar


  //ASSIGNMENT-1
  #include <stdio.h>
  int main()
{
  printf("welcome to the world of c /n");
   return 0;
}
output: welcome to the world of c /n
  
Ans: if /n is not include in printf  statement then the cursor will blink on same line and the statememt will print same




26-11-20, 11:10 a.m. princerai1913111051@gmail.com


// MY FIRST PROGRAM IN C++
# include <iostream>
using namespace std;
int main()
{
<span style="white-space:pre"> </span>cout <<"your name and city /n";
<span style="white-space:pre"> </span>return 0;
}

output: your name and city /n
26-11-20, 10:43 p.m. princerai1913111051@gmail.com


// welcome to the world of c

#include<stdio.h>
int main()
{
  printf("welcome to the world of c ");
  return 0;
}

/*Output
welcome to the world of c
*/
25-03-21, 10:45 a.m. jagadeeshpangala@gmail.com


//assignment 1
// welcome to the world of c
#include<stdio.h>
int main()
{
   printf("welcome to the world of c");
   return 0;
}

output : welcome to the world of c
06-05-21, 9:47 p.m. sumitsodepur26@gmail.com


Log-in to answer to this question.