What are static variables in c?
No Answer is Posted For this Question
Be the First to Post Answer
can we print any string without using terminator?
A collection of data with a given structure for excepting storing and providing on demand data for multiple users a) linked list b) datastructer c) database d) preprocessor
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.
Is c language still used?
write a c programme for add of two numbers with out use of arthematic operators
What is header file definition?
Explain the Difference between the New and Malloc keyword.
difference between semaphores and mutex?
What does the characters “r” and “w” mean when writing programs that will make use of files?
What is enumerated data type in c?
How do I declare an array of N pointers to functions returning pointers to functions returning pointers to characters?
typedef enum { html, java, javascript, perl, cgi } lang;The above statement defines a : a) Union b) User defined type c) Enumerated variable d) none