I have a varargs function which accepts a float parameter?
No Answer is Posted For this Question
Be the First to Post Answer
what will be maximum number of comparisons when number of elements are given?
What is C++
What is memory leak in c?
what will be the output for the following program? main() { char ch = 'k'; char c; printf("%c",c); }
Create a structure to specify data on students given below: Roll number, Name, Department, Course, Year of joining Assume that there are not more than 450 students in the college. 1.write a function to print names of all students who joined in a particular year 2.write a function to print the data of a student whose roll number is given
#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Tell me the output?
what is difference between array of characters and string
say the following declaration is correct nr not. int b=a,n=0;
I need a help with a program: Write a C program that uses data input in determining the whole of points A and a whole of circles B. Find two points in A so that the line which passes through them, cut through the maximum number of circles.
write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
0 Answers Lovely Professional University,
Is c language still used?
How is a structure member accessed?