How is a macro different from a function?
List some of the static data structures in C?
Predict the output or error(s) for the following: 25. main() { printf("%p",main); }
Explain what is the general form of a c program?
What are run-time errors?
Implement a function that returns the 5th element from the end in a singly linked list of integers in one pass.
What is a wrapper function in c?
What is pragma in c?
what is the maximum limit of row and column of a matrix in c programming. in linux .
write a c program to print "Welcome" without using semicolon in the whole program ??
Write a program to generate prime factors of a given integer?
which of the following is allowed in a "C" arithematic instruction a) [] b) {} c) () d) none of the above
the output will be #include<stdio.h> int main () { int i; i = 9/2; printf("%i",i); return 0; }