Is c still used?
No Answer is Posted For this Question
Be the First to Post Answer
What is the meaning of typedef struct in c?
What is the use of printf() and scanf() functions?
Some coders debug their programs by placing comment symbols on some codes instead of deleting it. How does this aid in debugging?
Write a C program that defines a 2-dimentional integer array called A [50][50]. Then the elements of this array should randomly be initialized either to 1 or 0. The program should then print out all the elements in the diagonal (i.e. a[0][0], a[1][1],a[2][2], a[3][3], ……..a[49][49]). Finally, print out how many zeros and ones in the diagonal.
what type of errors are checked during compilation
write a C program : To find out the number of identical words in two files . the file name should be taken as command line argument .
How to swap two values using a single variable ? condition: Not to use Array and Pointer ?
What should not contain a header file?
How can I find out how much free space is available on disk?
15.what is the disadvantage of using macros? 16.what is the self-referential structure? 17.can a union be self-referenced? 18.What is a pointer? 19.What is the Lvalue and Rvalue? 20.what is the difference between these initializations? 21.Char a[]=”string”; 22.Char *p=”literal”; 23.Does *p++ increment p, or what it points to?
Is it possible to execute code even after the program exits the main() function?
Write a program for the following series? 1 121 12321 1234321 123454321 12345654321 1234567654321 123456787654321 12345678987654321 1234567890987654321 123456789010987654321 12345678901210987654321 1234567890123210987654321 .........1234321............ ..........123454321............ ..........12345654321............ 7 8 9 0 1 Pls............?