How can I write a function that takes a format string and a variable number of arguments?
No Answer is Posted For this Question
Be the First to Post Answer
what is the use of bitfields & where do we use them?
plz answer.... write a program that reads line (using getline) e.g."345", converts each line to an integer using "atoi" and computes the average of all the numbers read. also compute the standard deviation.
20. main() { int i=5; printf("%d%d%d%d%d%d",i++,i--,++i,--i,i); } Answer:??????
#include<stdio.h> #include<conio.h> void main() { char ch='\356'; printf("%d",ch); } o/p=-18 why?plz.explain
wat is the output int main() { char s1[]="Hello"; char s2[]="Hello"; if(s1==s2) printf("Same"); else printf("Diff"); }
Is the C language is the portable language...If yes...Then Why...and if not then what is problem so it is not a Portable language..???
Tell me what is null pointer in c?
int a=0,b=2; if (a=0) b=0; else b=*10; What is the value of b ?
Write a program to generate random numbers in c?
What is pass by reference in c?
How the C program can be compiled?
Given a valid 24 hour format time find the combination of the value and write a program ,do not hard the value and if any other inputs provided should work with the logic implemented Input: 11:30 Output: 13:10 Input: 18:25 Output: 21:58