Why can arithmetic operations not be performed on void pointers?
C program to find frequency of each character in a text file?
Write a main() program that calls this function at least 10 times. Try implementing this function in two different ways. First, use an external variable to store the count. Second, use a local variable. Which is more appropriate?
Why do we need volatile in c?
Write a C program where input is: "My name is xyz". output is: "xyz is name My".
What are the advantages and disadvantages of pointers?
Is c programming hard?
Here is a neat trick for checking whether two strings are equal
Look at the Code: main() { int a[]={1,2,3},i; for(i=0;i<3;i++) { printf("%d",*a); a++; } } Which Statement is/are True w.r.t the above code? I.Executes Successfully & Prints the contents of the array II.Gives the Error:Lvalue Required III.The address of the array should not be changed IV.None of the Above. A)Only I B)Only II C)II & III D)IV
the format specified for hexa decimal is a.%d b.%o c.%x d.%u
How many header files are in c?
What are different storage class specifiers in c?
A program to allow an input operand and operator from the operator and read on the display and output operand.