what do the 'c' and 'v' in argc and argv stand for?
No Answer is Posted For this Question
Be the First to Post Answer
What is 1f in c?
a=0; while(a<5) printf("%d\n",a++); how many times does the loop occurs? a.infinite b.5 c.4 d.6
Can the sizeof operator be used to tell the size of an array passed to a function?
Is reference used in C?
What is string in c language?
#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?
How to print India by nested loop? I IN IND INDI INDIA
How to define structures? ·
Write a program that takes a 5 digit number and calculates 2 power that number and prints it
What functions are used in dynamic memory allocation in c?
which is faster execution: loops or recursion?
Is c object oriented?