What is the value of c?
No Answer is Posted For this Question
Be the First to Post Answer
Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
main() { int a,b; printf("%d,%d",scanf("%d%d",&a,&b)); } => do u mean above program's output... =>output will be:2,whatever you enter value for b. =>because scanf is a library fn which will return how many arguements it processes, and second value you are right mr.Satya but i found my self unable to understand that for the first time scanf returns the no of successful matches but how for the second time it returns the value of 'b'.while a function should return the same 'r' value every time.
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)
Is c is a high level language?
WAP to convert text into its ASCII Code and also write a function to decode the text given?
What are the main characteristics of c language describe the structure of ac program?
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
List out few of the applications that make use of Multilinked Structures?
What are the benefits of c language?
Why we use int main and void main?
What is a substring in c?
Give differences between - new and malloc() , delete and free() ?