You are on page 1of 1

Q1.

Evaluate Zivame using Keller's Customer Based Brand

(CBBE) Model. #include<stdio.h>

#include<conio.h>

#include<stdlib.h>

void main()

clrscr();

FILE *fptr;

char text[100];

int i=0;

printf("\n ENter a Text:");

gets(text);

if((fptr=fopen("TEST","w"))==NULL)

printf("\n Cannot Open File.!!!");

fputs(text,fptr);

if(fclose(fptr))

printf("\n File Close Error");

getch();

You might also like