What is difference between structure and union?
No Answer is Posted For this Question
Be the First to Post Answer
Is there any possibility to create customized header file with c programming language?
write a own function to compare two strings with out using stringcomparition function?
main() { int a=4,b=2; a=b<<a + b>>2; printf("%d", a); }
what is the use of using linked list and array?
how to write palindrome program?
What is the right type to use for boolean values in c? Is there a standard type?
Explain this code. #include <stdio.h> void f1(int *k) { *k = *k + 10; } main ( ){ int i; i = 0; printf (" The value of i before call %d \n", i); f1 (&i); printf (" The value of i after call %d \n", i); }
Write a program to reverse a string.
0 Answers Global Logic, iNautix, TCS, Wipro,
What is size of union in c?
write c program to display output 10(10+20)+(10+20+30)+ ... n term
0 Answers Hindustan Gum Chemicals,
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?
write a program that will open the file, count the number of occurences of each word in the the complete works of shakespeare. You will then tabulate this information in another file.