What is the purpose of & in scanf?
No Answer is Posted For this Question
Be the First to Post Answer
Can we assign string to char pointer?
what is a static function
Explain what is a stream?
I need to take a sentence from input and sort the words alphabetically using the C programming language. Note: This is C not C++. qsort and strtok not allowed
What is string length in c?
who invented c
What is the scope of static variable in c?
Can I pass constant values to functions which accept structure arguments?
What are the general description for loop statement and available loop types in c?
#include<stdio.h> int fun(); int i; int main() { while(i) { fun(); main(); } printf("hello \n"); return 0; } int fun() { printf("hi"); } answer is hello.how??wat is tat while(i) mean?
What is output redirection?
Are enumerations really portable?