Why c language is called c?
No Answer is Posted For this Question
Be the First to Post Answer
What is sizeof array?
what is the output of the following program and explain the answer #include<stdio.h> exp() { main(5) } main(int a) { printf("%d",a); return; }
A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
Convert the following expression to postfix and prefix X $ Y Z - M + N + P / Q / (R + S)
Can you please explain the difference between malloc() and calloc() function?
Why is C language being considered a middle level language?
the expression a=30*1000+2768; evalutes to a) 32768 b) -32768 c) 113040 d) 0
what is the similarities between. system call and library function?
Write a c program using for loop in switch case?
Which sorting algorithm is the best?
Why is struct padding needed?
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)