AP skill development కార్యాలయం విజయవాడ బస్టాండ్ పై అంతస్తులో స్వయంగా 2014-2019 మధ్య సందర్శించితి.. అక్కడి ఉద్యోగులు శ్రద్ధతో పనిచేస్తున్నట్టు తోచింది. నైపుణ్య శిక్షణ ఇస్తున్నట్లు/ ఉద్యోగమేళాలు నిర్వహిస్తున్నట్లు ఎన్నో సార్లు వివిధ కాలేజీల ద్వారా తెలుస్తూవుండెను. ముఖ్యమంత్రి స్థాయిలో ఉండే వ్యక్తి కంపెనీలను ప్రాధేయపడి మౌలిక వసతులు కల్పిస్తామని హామీ ఇచ్చి హైటెక్ సిటీ, ఐ.ఎస్. బి వంటివాటి ఏర్పాటుకు సాహసించెను. విజన్ 2020పేరుతో తెలుగువారు ఐటీలో రాణించడానికి తగిన పునాది వేసింది ఎవరు అంటే మాత్రం సమాధానం పంచభూతాలకు (కూడా) తెలుసు.. వాటి 'సాక్షి'గా జరిగింది కాబట్టి! నాకు తెలియని అంశాల గురించి నేను మాట్లాడ(లే)ను
100% C prog to write content into a file and then read it back onto the console
#include<stdio.h> #include<conio.h> void main() { char ch; FILE *fptr; // clrscr(); fptr=fopen("kotta1601.txt","w"); printf("\n start entering the data: \n "); ch=getchar(); while(ch!='z') { fputc(ch,fptr); ch=getchar(); } fclose(fptr); //writing file is completed now lets start reading from the just created file fptr=fopen("kotta1601.txt","r"); printf("\n start reading the data from the file: \n "); while(!feof(fptr)) { ch=fgetc(fptr); putchar(ch); } fclose(fptr); getch(); }
కామెంట్లు
కామెంట్ను పోస్ట్ చేయండి
దయచేసి మీ సలహాలను సూచనలను స్పష్టంగా పేర్కొనగలరు. plz see that ur comments are 'acceptable' in a value based society.