What are disadvantages of C language.


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

how many types of operators are include in c language a) 4 b) 6 c) 8 d) 12

0 Answers  


Explain the advantages and disadvantages of macros.

0 Answers   TCS,


What is the use of ?

0 Answers  


what will the following program do? void main() { int i; char a[]="String"; char *p="New Sring"; char *Temp; Temp=a; a=malloc(strlen(p) + 1); strcpy(a,p); //Line no:9// p = malloc(strlen(Temp) + 1); strcpy(p,Temp); printf("(%s, %s)",a,p); free(p); free(a); } //Line no 15// a) Swap contents of p & a and print:(New string, string) b) Generate compilation error in line number 8 c) Generate compilation error in line number 5 d) Generate compilation error in line number 7 e) Generate compilation error in line number 1

1 Answers   IBM,


What is a good way to implement complex numbers in c?

0 Answers  






write a program of palindrome(madam=madam) using pointer?

5 Answers   L&T,


How to write c functions that modify head pointer of a linked list?

0 Answers  


In which header file is the null macro defined?

0 Answers  


main() { int x=2, y=4 if ((x==2||y==4) x++ y++ if (y==4+1) { x=x+y; } y++; printf("The values of x and y are %d and %d."x,y); } What is the output?

5 Answers   TCS,


Q.1 write aprogram to stack using linklist o insert 40 items? Q.2 write a program to implement circular queue with help of linklist?

0 Answers   TCS,


How can I make a program in c to print 'Hello' without using semicolon in the code?

9 Answers   C DAC, Practical Viva Questions,


Write a C/C++ program that connects to a MySQL server and checks if the InnoDB plug-in is installed on it. If so, your program should print the total number of disk writes by MySQL

0 Answers  


Categories