Is the exit() function same as the return statement? Explain.
What is data structure in c programming?
Does * p ++ increment p or what it points to?
Write a c program to sort six numbers and find the largest one by using the ladder of if-else? plz do help me
write a function to swap an array a[5] elements like a[0] as a[5],a[1] as a[4],....a[5] as a[0].without using more than one loop and use one array not to use temp array?
What are the functions to open and close file in c language?
what is C?
Define C in your own Language.
Explain what is the general form of a c program?
What is pointer to pointer in c language?
What will be the result of the following C language program? main() { int a = 0; int b = 20; char x = 1; char y = 10; if(a,b,x,y) printf("Welcome"); }
what is c programming?
#define f(g,h) g##h main O int i=0 int var=100 ; print f ("%d"f(var,10));} what would be the output?