What is auto keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
Is c compiled or interpreted?
Reverse the part of the number which is present from position i to j. Print the new number.[without using the array] eg: num=789876 i=2 j=5 778986
What is the difference between typedef and #define?
can anyone suggest some site name..where i can get some good data structure puzzles???
What is difference between scanf and gets?
Difference between macros and inline functions? Can a function be forced as inline?
0 Answers HAL, Honeywell, Zomato,
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
How can I find the modification date and time of a file?
what is the flow of execution in cprogram? ex:printf();,scanf();
write a program to search for an element in a given array. If the array was found then display its position otherwise display appropriate message in c language
Is array name a pointer?
f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed