What is spark map function?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> int main( ) { Int a=300, b, c; if(a>=400) b=300; c=200; printf(“%d%d ”, b, c); return0; }
implement OR gate without using any bitwise operator.
While compiling a c program,graphics header files are not including in my program..eg: <graphics.h>,what may be the problem...is there any environment settings exists.
Write a C program to fill a rectangle using window scrolling
What is unsigned int in c?
How is a two dimensional array passed to function when the order of matrix is not known at complie time?
What is typedef struct in c?
what is answer for perfect number????????????????
Write a c program using for loop in switch case?
what are the stoge class in C and tel the scope and life time of it?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
write a program to print the consecutive repeated character from the given string... input string is : hhhhjkutskkkkkggggj output should be like this: hhhhkkkkkgggg anyone help me...