Apart from dennis ritchie who the other person who contributed in design of c language.
No Answer is Posted For this Question
Be the First to Post Answer
2.main { int x,j,k; j=k=6;x=2; x=j*k; printf("%d", x);
What is pass by reference in c?
What is merge sort in c?
Explain the Difference between the New and Malloc keyword.
Want to know how to write a 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.
What is page thrashing?
What is a structure and why it is used?
What is adt in c programming?
Find the middle node in the linked list?? (Note:Do not use for loop, count and count/2)
Diff: between this 2 classes in terms of memory class A { int i; char c; double d; }; class A { double d; int i; char c; }; How it is calculating?
Program to find the absolute value of given integer using Conditional Operators
What is the use of volatile?