What is extern keyword in c?
No Answer is Posted For this Question
Be the First to Post Answer
write a program to input 10 strings and compare without using strcmp() function. If the character of one string matches with the characters of another string , sort them and make it a single string ??? example:- str1="Aakash" st2="Himanshu" str="Uday" output:- Aakashimanshuday (please post the answer as quickly as possible)
Explain what are multidimensional arrays?
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
write a program in 'c' to find the value of p[i+1]^n.p,i,n are arguments of a macro and n is a integer
Why string is used in c?
Explain goto?
Can an array be an Ivalue?
application attempts to perform an operation?
What is calloc() function?
Difference between pass by reference and pass by value?
what is the output of the program?? #include<stdio.h> main ( ) { int a=010,sum=0,tracker: for(tracker=0;tracker<=a;tracker++) sum+=tracker; printf(ā %d\nā,sum); } what is the difference between a=10 and a=010??
what is an inline fuction??