What are the types of functions in c?
No Answer is Posted For this Question
Be the First to Post Answer
Why does everyone say not to use gets?
what will be the output of" printf("%d%d",scanf("%d% d",&a&b));"
Please list all the unary and binary operators in C.
write a c/c++ program that takes a 5 digit number and calculates 2 power that number and prints it?
c language interview questions & answer
What is wrong with this code such that it doesnt produce the input reversed? #include <stdio.h> #include <stdlib.h> #include <string.h> int main(void) { char Space = ' '; char LineOfText; float count; LineOfText = getchar(); while ((LineOfText = getchar()) != '/n'); { count = strlen(LineOfText) - 1; while (count >= 0) { putchar(LineOfText[count]); count--; } } getchar(); return 0; }
explain what is fifo?
WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..
What is volatile variable in c?
Two's compliment of -5
what is difference between #include<stdio.h> and #include"stdio.h"
Why preprocessor should come before source code?