write a programming in c to find the sum of all elements in
an array through function.
No Answer is Posted For this Question
Be the First to Post Answer
Write a code to remove duplicates in a string.
Why is sizeof () an operator and not a function?
.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }
Difference between macros and inline functions? Can a function be forced as inline?
0 Answers HAL, Honeywell, Zomato,
What is data structure in c programming?
I need to take a sentence from input and sort the words alphabetically using the C programming language. Note: This is C not C++. qsort and strtok not allowed
Write a program to exchange two variaables without temp
main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }
Differentiate between ordinary variable and pointer in c.
palindrome for strings and numbers----Can anybody do the prog?
6 Answers CTS, TCS, Vipro Lifescience Pvt,
how do u find out the number of 1's in the binary representation of a decimal number without converting it into binary(i mean without dividing by 2 and finding out the remainder)? three lines of c code s there it seems...can anyone help
What are static variables, and where are they stored?