writ a program to compare using strcmp VIVA and viva with its output.
Can we change the value of static variable in c?
What are pointers? What are stacks and queues?
Explain can static variables be declared in a header file?
Is there a way to compare two structure variables?
Are the variables argc and argv are always local to main?
how to make a scientific calculater ?
What are the different types of data structures in c?
Explain how do you determine a file’s attributes?
FILE *fp1,*fp2; fp1=fopen("one","w") fp2=fopen("one","w") fputc('A',fp1) fputc('B',fp2) fclose(fp1) fclose(fp2)} a.error b. c. d.
formula to convert 2500mmh2o into m3/hr
Are negative numbers true in c?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
Why are algorithms important in c program?
Is there anything like an ifdef for typedefs?