What are qualifiers and modifiers c?
No Answer is Posted For this Question
Be the First to Post Answer
Sir i want e-notes of C languge of BAlaguruswami book i.e scanned or pdf file of balaguruswamy book on c language.PLEASE SEND ME on my mail id ajit_kolhe@rediff.com
a character or group of characters that defines a register,or a part of storage a) memory b) byte c) address d) linear list
Explain what is wrong with this program statement? Void = 10;
write a C and C++ programme to implement the A,bubble sort B,quick sort C,insertion sort D,sequential search E,binary search
How can I discover how many arguments a function was actually called with?
print the palindrome numbers in between 0 to n
5. What kind of sorting is this: SORT (k,n) 1.[Loop on I Index] repeat thru step2 for i=1,2,........n-1 2.[For each pass,get small value] min=i; repeat for j=i+1 to N do { if K[j]<k[min] min=j; } temp=K[i];K[i]=K[min];K[min]=temp; 3.[Sorted Values will be returned] A)Bubble Sort B)Quick Sort C)Selection Sort D)Merge Sort
What is function prototype in c with example?
what is the difference between #include<stdio.h> and #include"stdio.h" ?
What are the advantage of c language?
Write a program to give following output..... ********* **** **** *** *** ** ** * * ** ** *** *** **** **** *********
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }