How is a macro different from a function?
No Answer is Posted For this Question
Be the First to Post Answer
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
cavium networks written test pattern ..
Write a C program that computes the value ex by using the formula ex =1+x/1!+x2/2!+x3+3!+………….
How to swap two values using a single variable ? condition: Not to use Array and Pointer ?
What are the 3 types of structures?
Explain what will the preprocessor do for a program?
Write a program to print prime nums from 1-20 using c programing?
How many types of operator or there in c?
Explain what header files do I need in order to define the standard library functions I use?
Write a program to check armstrong number in c?
What are the 5 data types?
why program counter is 16 bit?