What is a program flowchart and how does it help in writing a program?
No Answer is Posted For this Question
Be the First to Post Answer
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
Explain the term printf() and scanf() used in c language?
Explain about the functions strcat() and strcmp()?
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
What is define directive?
what is structuer?
what is bit rate & baud rate? plz give wave forms
What are structures and unions? State differencves between them.
Given a string write a program to print all alphabetical characters in the order of their occurance first,followed by the sum of the numeric characters then followed by the special characters in the order of their occurance.
1 Answers College School Exams Tests, Wipro,
Which is better oop or procedural?
Explain what are the __date__ and __time__ preprocessor commands?
difference of two no's with out using - operator