పోస్ట్‌లు

అక్టోబర్, 2023లోని పోస్ట్‌లను చూపుతోంది

100% c prog to add digits of given number and display it

#include <stdio.h> void main() {   int rem,numb,total=0;    printf("\n enter a non-negative integer:");  scanf("%d",&numb);  while(numb)  {      rem=numb%10;      total=total+rem;      numb=numb/10;  }     printf("\n sum of digits of given number =%d",total); } ఔట్పుట్  తెర  మీద ఇలా.. enter a non-negative integer:218 sum of digits of given number=11 enter a non-negative integer:0 sum of digits of given number=0

100% C prog for comparing whether two strings are equal or not

#include<stdio.h> #include<string.h> void main() {   int i;   char name1[11],name2[11]; // we assume max length of the names is 11   printf("\n enter a name:');   gets(name1);  //scanf పెడితే ..పేరు మధ్యలో ఖాళీ వుంటే మొదటి పదం వరకే తీసుకొనును   printf("\n enter another name:");   gets(name2);    i=strcmp(name1,name2);   if (i==0)    printf("\n both names are same");  else    printf("\n both names are different"); } తెరమీద ఇలా  enter a name:bharat enter another name:bharat both names are same enter a name:bhArat enter another name:bharat both names are different enter a name:ambA vANi enter another name:ambA vANi both names are same మీరు కూడా వివిధ inputs కి outputs ఎలా వస్తాయో వ్రాయాల్సి వుంటుంది

100% c prog .. using scanf() how to read name with blank space in between.

#include<stdio.h> void main() {     char name[12]; / we assume max length  of the name   is 12  printf("\n enter a name:");   scanf("%s",name);  //scanf పెడితే ..పేరు మధ్యలో ఖాళీ వుంటే మొదటి పదం వరకే తీసుకొనును  printf("\n name=%s",name); } తెరమీద ఇలా  enter a name:bhArat name=bhArat enter a name:bharat kumAr name=bharat ---------------- #include<stdio.h> void main() {     char nAm[12]; // we assume max length  of the nAm is 12      printf("enter nAm:");     scanf("%[^\n]",nAm); //to consider blank space also within the name 'bharat kumAr'     printf("\n nAm=%s",nAm); } తెరమీద ఇలా  enter nAm:bharat kumar nAm=bharat kumar
హైదరాబాద్ ఇంజనీరింగ్ కాలేజీలో అసిస్టెంట్ ప్రొఫెసర్ గా వున్న ఓ తల్లి ఇలా అడిగెను 27-10-23న..తన నాలుగేళ్ళ పాపను చూసుకోవటానికి& తనకూ ఓ పెద్దదిక్కుగా ఉండేలా need a middle aged or above aged lady.  will take care of the lady and her expenses(రూ పన్నెండు వేలు+భోజనం+వసతి.. అక్కడే 24*7 ఉంటారు కనుక.. *ఇంటి మనిషిగా*) If you know such woman who don't have children or orphan or alone, looking for work / lady companion, plz inform at the earliest. ఆరునెలల నుంచి సంవత్సరం పాటు ఉంటామని హామీ ఇవ్వగలిగితే మేలు. బరువైన పనులు ఏమీ ఉండవు. హైదరాబాద్ బి హెచ్ ఈ ఎల్ సమీపంలో లింగంపల్లి ప్రాంతంలో.       దేశసేవలో భాగంగా వాళ్ళాయన ఉద్యోగరీత్యా వేరే చోట ఉంటున్నారు. ---- vikramkumar.volunteer@gmail.com

100% finding length of string that has no spaces in between

// prog to find string length #include <stdio.h> void main() {     int i;     char nAmamu[9];     printf("\n enter a name with upto 9 characters without space:");     scanf("%s",nAmamu);     for(i=0;nAmamu[i]!='\0';i++); //purposefully semicolon is used     printf("\n length of the name %s is =%d",nAmamu, i); } ఔట్పుట్  తెర  మీద ఇలా.. enter a name with upto 9 characters without space:ravi  length of the name ravi is =4 ఒకవేళ పేరులో ఖాళీ స్థలం వుంటే అది మొదటి పదం మాత్రమే తీసుకుంటుంది  ఇలా.. enter a name with upto 9 characters without space:raj kumar length of the name raj is =3.  వాస్తవానికి 3+1 space+5 మొత్తం 9 రావాలి కదా అని అనుకునే అవకాశం ఉంది. ఈ సమస్యను అధిగమించటానికి try using puts( ), gets( ) functions 

100% C prog to convert lowercase name into upper case

// prog to convert lowercase name into upper case #include <stdio.h> #include<string.h> int main() {   char name[9];   int i;   printf("enter a name in lower case only without spaces:"); // these conditions are important   scanf("%s",name);   printf("\n name in lower case as entered by user is %s", name);   printf("\n");   for(i=0;name[i]!='\0';i++)   {       printf("%c",name[i]-32);   }   printf("\n1= okaTi"); } ఔట్పుట్  తెర  మీద ఇలా.. enter a name:bharat name is bharat BHARAT 1= okaTi

100% simple C program to print name (string)

#include <stdio.h> #include<string.h> int main() {   char name[9];   int i;   printf("enter a name:");   scanf("%s",name);   printf("name is %s", name); } ఔట్పుట్  తెర  మీద ఇలా  enter a name:bhArat name is bhArat

100% స్విచ్ with float as parameter is not valid

#include <stdio.h> int main() {   float z=4.0;   switch(z)   {       case 1.0: printf("\n Jaipur = pink city");       case 4.0: printf("\n garden city= Bengaluru");  } } switch కి ఇన్పుట్ గా char లేక int ఇస్తేనే తీసుకుంటుంది కనుక ఎర్రర్ వచ్చును ఔట్పుట్  తెర  మీద ఇలా ..  error: switch quantity not an integer   

100% switch program with & without break statement

/*In case '2' ...this is character '2'   and not integer 2 #include <stdio.h> int main() {   int z=4;   switch(z)   {       case 1: printf("\n MahArAShTra is famous for onions");       case 4: printf("\n shadow of main temple of TanjAvur does not fall on earth");       case '2': printf("\n 15-8-1947 is friday"); /*as there is no break statement in the above case 4, even this line gets printed on output screen*/                 break;        case 7: printf("this line wont get printed because in above case '2', a break is encountered and so command will go out of switch") ;  } } ఔట్పుట్  తెర  మీద ఇలా .. shadow of main temple of TanjAvur does not fall on earth  15-8-1947 is friday

100% demonstrating 'GOTO'

// switch   goto demo               #include <stdio.h> void main() {  int i=4;    switch(i)  {            case 1: printf("\n satyamu paluku  1");      case 4: printf("\n nijam cheppu  4");      goto gamyamu;      case 2: printf("\n bhArat mahAn 2");      gamyamu: printf("\n arvindguptatoys ");  } } ఔట్పుట్  తెర  మీద ఇలా ..  nijam cheppu  4  arvindguptatoys  case 4 లో gamyamu  అన్నది కనపడగానే ఆ gamyamu లో ఉన్న statements get executed Note: try to avoid using goto bcoz it becomes difficult to understand the flow of the control and it may so happen that it enter an infinite loop as given below: #include <stdio.h> void main() {  int i=4;    switch(i)  {            case 1: printf("\n satyamu paluku  1");              gamyamu: printf("\n arvindguptatoys ");      case 4: printf("\n nijam cheppu  4");      goto gamyamu;      case 2: printf("\n bhArat mahAn 2");        } }

100% switch program without break statement

// switch    demo without using   break statement                                                               #include <stdio.h> void main() {  int i=4;    switch(i)  {      case 1: printf("\n satyamu paluku  1");      case 4: printf("\n directly this gets printed   4");      case 2: printf("\n this case 2 will also get printed bcoz there was no break statement in case 4 which is just above case2");  } } ఔట్పుట్  తెర  మీద ఇలా ..  directly this gets printed    4  this case 2 will also get printed bcoz there was no break statement in case 4 which is just above case2 ---- Now if we use break statement just at the end of case 1 and case 4, then   ఔట్పుట్  తెర  మీద ఇలా .. directly this gets printed    4 ఆ తర్వాత switch నుండి బయటకు వచ్చేస్తుంది 

100% C prog time period of simple pendulum

#include <stdio.h> #include<math.h> #define pi 3.14 #define g  9.81  //all units are in SI system void main() {     int i;     printf("\n this is print time period of a simple pendulum for varying lengths");     float time_period,L=0.5;     for(i=1; i<7; i++)     {      printf("\n the time period = %f s, if length=%d m, time_period, L);      L=L+0.1; } https://youtu.be/IcVRWts_lZQ?feature=shared   (IITB prof: history of mathematics)

100% C program factorial of a natural number

// program to print factorial of a given natural number #include <stdio.h> void main() {     int i,n,factoria=1;     printf("\n enter a natural number whose factorial is required:");     scanf("%d",&n);     for(i=2;i<=n;i++)     {         factoria=factoria*i;     }     printf("\n the factorial of %d is %d",n,factoria); } ఔట్పుట్  తెరమీద ఇలా   enter a natural number whose factorial is required:7 the factorial of 7 is 5040

28-10-23 కార్యక్రమానికి హాజరుకావాలని ఈపాటికే గట్టి నిర్ణయానికి వచ్చినవారికే ఈ పోటీలు

గమనిక.. మీరు చేసేవి ఏవైనా ఉదాత్తంగా ఉండాలి. భయంకరమైన శబ్దాలు వద్దు. fast blinking lights/ flash lights are not good for health. కుటుంబ సభ్యులందరూ కలిసి వినతగినవి/ చూడతగినవిగా ఉండాలి. try to get study material & career guidance from seniors ఈ కింద పేర్కొన్నవి    ఒంటరిగా  లేక బృందంగా పాడే వారికి/ సంగీత పరికరంపై పలికించవచ్చు    (1)  చలనచిత్రాల్లోని ఉదాత్తమైన/ సందేశాత్మక పాటలు (పాటకి/ తలకి యాభైవరకు బహుమతి)    (అ)  పాడవోయి భారతీయుడా..ఆడిపాడవోయి భారతీయుడా..     (ఇ)  ఏరువాక సాగాలో రన్నో చిన్నన్న .    (ఉ) .గాంధీ పుట్టిన దేశం.. రఘురాముడు ఏలిన రాజ్యం..ఇది సమతకు మమతకు సంకేతం    (ఎ)  నలుగురు కలిసి ..పొరుపులు మరచి చేయాలి ఉమ్మడి వ్యవసాయం..     (ఒ)   నీ సంఘం.. నీ ధర్మం. నీవు మరవద్ధు..     (క)   శ్రీకర కరుణాలవాల.. వేణుగోపాలా (తల్లిదీవెన పాట .. భానుమతి)    (ఖ)  భలే తాత మన బాపూజీ     (గ)   మత్తువదలరా .. నిద్దుర మత్తు వదలరా..     (చ) తెలుగు భాష తియ్యదనం .. తెలుగు జాతి గొప్పదనం తెలుసుకున్న వారికి తెలుగేఒక    (జ) కొంతమంది సొంత పేరు కాదుర గాంధీ.. ఊరికొక్క వీధి పేరు కాదుర గాంధీ (*last 2 are recommended t

GATE ప్రోత్సాహకం

GATE 2024 వ్రాస్తున్న  VKR విద్యార్థులు & అధ్యాపకులకు వారానికి ఓసారి mock test ఉంటుంది.  https://gate.nptel.ac.in/   . ఇందులో మీరు N(>40) మార్కులు తెచ్చుకుంటే మీకు (N-40)*25 రూపాయల నగదు బహుమతి ఇవ్వబడును(subject to a max of total gifts per mock test = Rs. 1000). THis is valid during OCT and NOV'2023. If u wish to avail this scheme, plz fill the details here before writing the mock test  https://forms.gle/fZH34w6y2uvvgBGa9 ధన్యవాదములు.  ఇది విద్యార్థులను & అధ్యాపకులను ప్రోత్సహించేందుకు  భారతి లిపి (bharatiscript.com) సౌజన్యంతో విక్రమ్ భయ్యా ద్వారా ఏర్పాటుచేయబడుచున్నది.

virtual labs విద్యార్థులకు & అధ్యాపకులకు ప్రోత్సాహకాలు.. @ VKR

అధ్యాపకులకు  ప్రోత్సాహకాలు..  virtual labs ని విద్యార్థులకు పరిచయం చేసి వారిలో కనీసం యాభైమందిచే ఓ రెండు చొప్పున ప్రయోగాలు చేసేలా చూడాలి...కాలేజ్ లో లేక ఇంటివద్దైనా సరే.  అలా సాధన చేసినవారికి నవంబరు 15-18 మధ్య  ఓ ఇరవై నిమిషాలపాటు  పది ప్రశ్నలతో ఆన్లైన్ పరీక్ష ఉంటుంది.  తగిన ప్రతిభ చూపినవారికి నగదు బహుమతులు ఉంటాయి. certificate of appreciation will  be given to those who do well. The teacher will be given a cash award of Rs. 500 or  50* N (whichever is small), where N is the no. of students who score >70 marks in that test. So if you are a faculty and telling ur students about this competition, plz fill the details. The faculty will also get a gold(silver) coloured certificate if the >70% (50%) of the students get >70%marks. This offer is valid for a max of 10 labs (/10 faculty). Faculty who are ready to take up this can fill in this:  https://forms.gle/CAcZuVHrZtjvcwGW9 ధన్యవాదములు   ఇది విద్యార్థులను & అధ్యాపకులను ప్రోత్సహించేందుకు  భారతి లిపి (bharatiscript.com) సౌజన్యంతో

//program to find total of the marks of 3 subjects of 2 student using array concept

//program to find total of the marks of 3 subjects of 2 student using array concept #include <stdio.h> void main() {      int i,j,marks[2][3],total[2]={0,0};      for(i=0;i<2;i++)      {       for(j=0;j<3;j++)           {        printf("\n enter the marks of student %d in subject %d:",i+1,j+1);        scanf("%d",&marks[i][j]);        total[i]=total[i]+marks[i][j];      }      printf("\n sum of the marks of student %d in  %d subjects =%d",i+1,j,total[i]);         } } output  తెర మీద ఇలా   enter the marks of student 1 in subject 1:20 enter the marks of student 1 in subject 2:20 enter the marks of student 1 in subject 3:30 sum of the marks of student 1 in  3 subjects =70  enter the marks of student 2 in subject 1:20  enter the marks of student 2 in subject 2:30  enter the marks of student 2 in subject 3:40  sum of the marks of student 2 in  3 subjects =90  

100% total of marks of a student in 4 subjects using array concept

//program to find total of  marks of 4 subjects of a student using array concept #include <stdio.h> void main() {      int i,marks[4],total=0;      for(i=0;i<4;i++)      {        printf("\n enter the marks in subject %d:",i+1);        scanf("%d",&marks[i]);        total=total+marks[i];      }        printf("\n sum of the marks of 4 subjects =%d",total);     } output  తెర మీద ఇలా   enter the marks in subject 1:20 enter the marks in subject 2:21 enter the marks in subject 3:19 enter the marks in subject 4:21 sum of the marks of 4 subjects =81

100% swapping 2 numbers without using third variable

//program to swap two numbers without using third variable   #include <stdio.h> void main() {      int p,q;      printf("\n enter two integers:");      scanf("%d%d",&p,&q);      printf("\n values of p and q before swapping are %d and %d respectively",p,q);  //suppose p=5, q=2      p=p+q; //afterthis is run, p=7 and q=2      q=p-q; //after this is run p=7 and q=5      p=p-q; //afterthis is run p=2 and q=5      printf("\n values of p and q after swapping are %d and %d respectively",p,q);    } output ఇలా వచ్చె  enter two integers:5 2 values of p and q before swapping are 5 and 2 respectively  values of p and q after swapping are 2 and 5 respectively Note:  పొరపాటున పైన  కోడ్లో చివరిరెండు printf లలో  %d ల బదులు %f లు పెడితే  అప్పుడు  https://www.programiz.com/c-programming/online-compiler/   లో   ఔట్పుట్ ఈ క్రింది విధంగా వచ్చె   enter two integers:7 2 values of p and q before swapping are 0.000000 and 0.000000 respectively values of p a
//program to swap two numbers using third variable called 'temp' #include <stdio.h> void main() {      float temp,a=18.57,b=19.47;          printf("\n values of a and b before swapping are %f and %f respectively",a,b);      temp=a;      a=b;      b=temp;      printf("\n values of a and b after swapping are %f and %f respectively",a,b);           } output ఇలా వచ్చె  values of a and b before swapping are 18.570000 and 19.469999 respectively  values of a and b after swapping are 19.469999 and 18.570000 respectively

100% c prog patterns using for loops

// program to print patterns using for loops #include <stdio.h> void main() {     int   i,j;     for(i=1;i<=4;i++)     {         for(j=1;j<=i;j++)         {             printf("%2d",j);         }         printf("\n");         } }    ఔట్పుట్ తెర   1  1 2  1 2 3  1 2 3 4 ---------------------------------- // program to print patterns usinf for loops #include <stdio.h> void main() {     int   i,j,n;     printf("\nenter no of rows:");     scanf("%d",&n);     for(i=n;i>=1;i=i-1)     {         for(j=1;j<=i;j++)         {             printf("%2d",j);         }         printf("\n");         } }        ఔట్పుట్ తెర  enter no of rows:5  1 2 3 4 5  1 2 3 4  1 2 3  1 2  1 ------------- #include <stdio.h> void main() {     int   i,j,n;     printf("\nenter no of rows:");     scanf("%d",&n);     for(i=n;i>=1;i=i-1)     {         for(j=i;j<=n;j++)         {             printf(&

100% c prog simple and compound interest using 'if else'

// program to find simple or compound interest #include <stdio.h> void main() {     int   principle, no_of_years, choice, i;     float interest_percent,simple_interest,compound_interest,total_return,tatkal,temp;     printf("\n enter 1 for simple interest and 2 for compound interest:");     scanf("%d",&choice);     printf("\n Enter principle, no_of_years,interest_percent");     scanf("%d%d%f",&principle,&no_of_years,&interest_percent);         if(choice==1)     {                simple_interest=(principle*no_of_years*interest_percent)/100;                printf("\n principle=%d \n no_of_years=%d \n interest_percent=%f",principle,no_of_years,interest_percent);                printf("\n simple interest in Rs=%f",simple_interest);                printf("\n total_return in Rs=%f", principle+simple_interest);     }     else     {                temp=1+interest_percent/100;                tatkal=1;    

100% c prog simple and compound interest using switch

// program to find simple or compound interest #include <stdio.h> void main() {     int   principle, no_of_years, choice, i;     float interest_percent,simple_interest,compound_interest,total_return,tatkal,temp;     printf("\n Enter principle, no_of_years,interest_percent");     scanf("%d%d%f",&principle,&no_of_years,&interest_percent);     printf("\n enter 1 for simple interest and 2 for compound interest:");     scanf("%d",&choice);     switch(choice)     {         case 1:                simple_interest=principle*no_of_years*interest_percent/100;                printf("\n simple interest in Rs=%f",simple_interest);                printf("\n total_return in Rs=%f", principle+simple_interest);                break;         case 2:                temp=1+interest_percent/100;                tatkal=1;                for(i=1;i<=no_of_years;i++)                {                    tatkal=tatkal*temp;      

100% program to print electricity bills of multiple houses

/* program to generate electricity bill for multiple  houses(LT). let the tariff be  as follows Units                     Rs/ unit 1-50                     1.25 51-100                 2.00 101-200               3.50 >200                    5.50    */ #include<stdio.h> void main() {  int n,status=2;//initial status is taken as any non-zero number as we want the prog to run& generate bill atleast once  float bill_amt;  while(status)  {   printf("\n enter the number of units consumed:");   scanf("%d",&n);   if(n>0 && n<=50)    bill_amt=n*1.25;   else if(n>50 && n<=100)    bill_amt=50*1.25+(n-50)*2.00;   else if(n>100 && n<=200)    bill_amt=50*1.25+50*2.00+(n-100)*3.50;   else    bill_amt=50*1.25+50*2.00+ 100*3.50+(n-200)*5.50;   printf("\n bill amount = %f", bill_amt);   printf("\n enter a non-zero number to continue else enter 0 to stop: ");   scanf("%d",&status);  };//end of

100% C prog for electricity bill generation

/* program to generate electricity bill for LT household purpose. let the tariff be  as follows Units          Rs/ unit 1-50           1.25 51-100       2.00 101-200     3.50 >200          5.50    */ #include<stdio.h> void main() {    int n;    float bill_amt;    printf("\n enter the number of units consumed:");    scanf("%d",&n);    if(n>0 && n<=50)     bill_amt=n*1.25;    else if(n>50 && n<=100)      bill_amt=50*1.25+(n-50)*2.00;    else if(n>100 && n<=200)      bill_amt=50*1.25+50*2.00+(n-100)*3.50;    else      bill_amt=50*1.25+50*2.00+ 100*3.50+(n-200)*5.50;  printf("bill amount = %f", bill_amt) } ఔట్పుట్ తెర మీద ఇలా ...  enter the number of units consumed:55 bill amount = 72.500000 ----

100% c prog to illustrate usage of 'while loop'

/*program to print multiplication tables of given integers using "while(condition )"*/ #include <stdio.h> void main() {      int n,i,flag=4; //flag value can be any non zero  while(flag)  {    printf("\n enter a integer whose multiplication table is required:");    scanf("%d",&n);    for(i=1;i<11;i++)    {      printf("\n %3d * %2d= %3d",n,i,n*i);    }    printf("\n enter 0 to stop, else enter other number to continue:");    scanf("%d",&flag);  }; } ఔట్పుట్  ఈ కింది విధంగా కనపడును..  enter a integer whose multiplication table is required:7 7 *  1=   7    7 *  2=  14    7 *  3=  21    7 *  4=  28    7 *  5=  35    7 *  6=  42    7 *  7=  49    7 *  8=  56    7 *  9=  63    7 * 10=  70  enter 0 to stop, else enter other number to continue:2  enter a integer whose multiplication table is required:14  14 *  1=  14   14 *  2=  28   14 *  3=  42   14 *  4=  56   14 *  5=  70   14 *  6=  84   14 *  7=  98   14 *  8=

100% C Prog do ..while illustration

// program to print multiplication tables of given integers using do..while #include <stdio.h> void main() {      int n,i,flag;  do  {    printf("\n enter a integer whose multiplication table is required:");    scanf("%d",&n);    for(i=1;i<11;i++)    {      printf("\n %3d * %2d= %3d",n,i,n*i);    }    printf("\n enter 0 to stop, else enter other number to continue:");    scanf("%d",&flag);  }while(flag); } ఔట్పుట్  ఈ కింది విధంగా కనపడును..  enter a integer whose multiplication table is required:4 4 *  1=   4    4 *  2=   8    4 *  3=  12    4 *  4=  16    4 *  5=  20    4 *  6=  24    4 *  7=  28    4 *  8=  32    4 *  9=  36    4 * 10=  40  enter 0 to stop, else enter other number to continue:5  enter a integer whose multiplication table is required:5  5 *  1=   5    5 *  2=  10    5 *  3=  15    5 *  4=  20    5 *  5=  25    5 *  6=  30    5 *  7=  35    5 *  8=  40    5 *  9=  45    5 * 10=  50  enter 0 to stop, else

100% C prog to print multiplication table ఎక్కాలు

// program to print multiplication table of given integer #include <stdio.h> void main() {      int n,i;   printf("\n enter a integer whose multiplication table is required:");   scanf("%d",&n);   for(i=1;i<11;i++)   {     printf("\n %3d * %2d= %3d",n,i,n*i);    } }

100% SWITCH ఉదాహరణ

//  program to demonstrate the use of Switch in choosing department #include <stdio.h> void main() {  char choice;  printf("\n enter M for mech, E for EEE, C for Civil, I for IT");  scanf("%c", &choice);  switch(choice)  {    case'M': printf("\n Do all problems in Engg mechanics by Bansal ");             break;    case'E': printf("\n Do all problems in Thereja book");             printf("\n understand how VTPS & KTPS works");             break;    case'I': printf("\n whatever subject u choose, be a master of it");             break;    case'C': printf("\n visit Nagarjuna sagar project");            // break;  // break is not required in the last 'case'   } // end of switch }//end of main ఔట్పుట్ ఈ కింద ఉన్నది  enter M for mech, E for EEE, C for Civil, I for IT E E  Do all problems in Thereja book  understand how VTPS & KTPS works

100% c prog calender month ఒక నెల

नमस्कार / నమస్కారము /ನಮಸ್ಕಾರ/ வணக்கம்/ নমস্কাৰ/ નમસ્તે/  ସୁପ୍ରଭାତ / നമസ്കാരം #include<stdio.h> void main() {     int i,p,q,n,k;     printf("\n day of the week on which 1st of the month occurs=");     printf("\nEnter 1 for sunday, 2 for monday ...7 for saturday:");     scanf("%d",&i);     printf("\n enter no of days. 28-31:");     scanf("%d",&n); printf("\n"); printf(". ");     printf("SUN MON TUE WED THU FRI SAT\n");     for(k=0;k<4*(i-1);k++)      printf(" ");  for(q=1;q<=7-i+1;q++)   printf("%4d", q);  printf("\n");  for(p=2;p<=5;p++)  {      for(q=1;q<=7;q++)      {       if((p-2)*7+q+(7-i+1)<=n)   printf("%4d", (p-2)*7+q+(7-i+1));      }   printf("\n");  } // end of the p for loop } //end of main day of the week on which 1st of the month occurs= Enter 1 for sunday, 2 for monday ...7 for saturday:1 enter no of days. 28-31:30 .

100% C program to illustrate use of 'switch'

नमस्कार / నమస్కారము /ನಮಸ್ಕಾರ/ வணக்கம்/ নমস্কাৰ/ નમસ્તે/  ସୁପ୍ରଭାତ / നമസ്കാരം // Online C compiler to run C program online #include <stdio.h> void main() {     int i,n;     printf("\n enter 1 or 2 or 3:");     scanf("%d",&n);     switch (n)     {         case 1:                 printf("\n okaTi");                 break;         case 2:                 printf("\n renDu");                 break;         case 3:                 printf("\n mooDu");                 break;     }       printf("\n out of switch"); } // written by विक्रम कुमार ఔట్పుట్  స్క్రీన్  ఈ  క్రింద ఉన్నది enter 1 or 2 or 3:2 renDu  out of switch
నమస్కారము.. పలువురిచే మంచి పుస్తకములు చదివించే సదాశయంతో పుస్తకాలయము  ప్రారంభింపబడినది. తలా ఒక్క పుస్తకము మాత్రమే తీసుకొనవలెను. దయచేసి   పదకొండు రోజుల్లోగా తిరిగి ఇవ్వగలరు.  ఇతరులకు కూడా అవకాశం లభించాలి కదండీ!   అధ్యాపకులు మాత్రమేకాకుండా... బోధనేతర సిబ్బంది (బస్సు డ్రైవర్లు/ సెక్యూరిటీ/ ఊడ్చేవారు) కూడా తీసుకెళ్ళి తిరిగి ఇవ్వవచ్చు.  https://forms.gle/Z6A7rY7egx3Q8X3G8 Please fill this if u r utilizing the ' పుస్తకాలయము   நூலகம் facility
Introduction to Programming: 3 Simple programs using 'for loops' తెలుగులో  వివరణ https://youtu.be/DuVS6hRIl2s  (29:76)

అంతర్జాతీయ విద్యార్థి దినోత్సవం సందర్భంగా

అబ్దుల్కలాం గారి జయంతి సందర్భముగా కార్యక్రమాలు  (1) వ్యర్థంతోఅర్ధం (arvindgupta toystelugu అని నెట్లో వెతికితే చిన్న చిన్న సులభమైనప్రయోగాలు వస్తాయి. అలాంటివి చేసుకురావాలి) (2) mimicry (ధ్వన్యనుకరణ).. కలాం గారి గొంతు అనిపించేలామాట్లాడాలి (3 నిమిషాలు) (౩) కలాం .. విద్యార్థులకు (/నాకు) స్ఫూర్తి ప్రదాత...అనే అంశంపై వక్తృత్వం (ఐదు నిమిషాలు మాట్లాడాలి) (4) కలాంగారు ఎన్నో కలలు కన్నారు...దేశ అభివృద్ధి గురించి.ఉదా. PURA. లఘుచిత్రం తయారుచేయండి (1-5 నిమిషాలు ఉండవచ్చు) (5,6,7)కలాంగారు శాస్త్రీయ సంగీతం వినేవారు & వీణ వాయించేవారు. మీరుసంగీతంలో ఒక కీర్తన పాడవచ్చు/ ఏదైనా వాద్యం పలికించవచ్చు/ శాస్త్రీయ నృత్యం చేయవచ్చువీటిల్లో ఎందులోపాల్గొనదల్చినా పేరు నమోదు చేసుకోగలరు. అక్టోబర్ 11-14 తేదీల్లో మీ ప్రదర్శనకు అవకాశంఇచ్చే ప్రయత్నం చేస్తాం(గుడివాడలో ఉన్నవారికే).  (8) బలవంతులుగా& బుద్ధిమంతులుగా ఉండాలన్నారు కలాం జీ. కనుక మీరు కర్రసాము కరాటే ప్రదర్శన ఇవ్వవచ్చు (5-9నిమిషాలు) (9) సుద్దముక్కపై కలాం గారి బొమ్మ చెక్కుతారా? గవ్వలను పేర్చి వారి ప్రతిరూపం తయారు చేస్తారా? బట్టపై దారంతో/ పూసలతో వారి ముఖచిత్రం కు

ఐఐటీ అధ్యాపకులు చెప్పిన ప్రోగ్రామింగ్ పాఠాలు/ వీడియోలు

Introduction to Programming in C (ఐఐటీ కాన్పూర్) https://onlinecourses.nptel.ac.in/noc20_cs91/preview   ---- Problem Solving Through Programming In C ఐఐటీ ఖరగ్పూర్  (కింద్ వున్న మూడు లింకుల్లో ఏదో ఒకటి చూడవచ్చు) https://onlinecourses.nptel.ac.in/noc23_cs121/preview https://onlinecourses.nptel.ac.in/noc23_cs53/preview https://nptel.ac.in/courses/106105171 ---------- C Programming And Assembly Language (ఐఐటీ మద్రాస్) https://nptel.ac.in/courses/106106210 ---- C-Based VLSI Design https://nptel.ac.in/courses/106103229 ---- The Joy Of Computing (అసలు ప్రోగ్రామింగ్ ఎందుకు / ఎలా/ ఏమిటి ..ఆసక్తిదాయక కథనాలతో) https://nptel.ac.in/courses/106106182 ----

Introduction to programming పాత ప్రశ్నపత్రాలు & ఇతర మెటీరియల్

https://drive.google.com/drive/folders/1_h7UBRHpr0ky3JpqzxWiXt2yxXo7afI2 వారానికి ఒకసారైనా (ముఖ్యంగా  ప్రతి ఆదివారం మధ్యాహ్నం 13:30 తర్వాత) padhaayee.blogspot.com చూస్తే తాజా నోట్స్/ అసైన్మెంట్స్ & ఇతరత్రా సంబంధిత సమాచారం కనబడును.  (1) If u have any doubts plz ask in the class without hesitation. (2) Plz don't delay things with laziness. (3) If u come across any good learning material related to the subject feel free to share with others.  (4) మీ స్వంత నోట్స్ మీరు తయారు చేసుకోవాలి టీచర్ చెప్పేది మాత్రమే కాకుండా. (5) టైం టేబుల్ ప్రకారం అవసరమైన నోట్ పుస్తకాలు + 1 అదనపు rough నోట్ బుక్ (ఎప్పుడైనా అనుకోకుండా వేరే టీచర్ వస్తే వ్రాసుకోవటానికి)  మాత్రమే తెచ్చుకోండి. రెండు వేర్వేరు రంగుల పెన్నులు ఉంటే బాగుంటుంది.  ప్రస్తుతం మీరు చదువుతున్న  padhaayee.blogspot.com వెబ్ పేజీ లో కాస్త స్క్రోల్ చేస్తే మరిన్ని లింక్స్ కనపడును with additional material for our subject.  Assignment 0 మీకు 13-9-23న ఇవ్వటం జరిగింది. అది మీకు గుర్తు లేనిచో మీ తరగతిలో కనీసం ముగ్గురిని అదేమిటో అని అడిగి తెలుసుకొన

మీటింగ్ లింక్

నమస్కారము नमस्कार      శాస్త్రీయ సంగీతం గాత్రం వాయిద్యం/దేశభక్తి పాట/ నీతి పద్యాలు online for school level children  1-10-23 (14:00-15:30 మధ్యాహ్నం 2 నుంచి 3.30 ఆదివారం) generally the meeting is restricted to 15-25 participants   bcoz of time constraint.   Meeting link will be  updated on padhaayee.blogspot.com   పాల్గొనే లింక్ https://meet.google.com/ddg-qboz-fkh       Registration link= https://forms.gle/qoAYheeiVXudmaA2A certificate will be given to eligible participants  ధన్యవాదములు                            ----  vikramkumar.volunteer@gmail.com 8331926163