A program is required to print your biographic information including: Names, gender, student Number, Cell Number, line of study and your residential address.
No Answer is Posted For this Question
Be the First to Post Answer
write a c program to find biggest of 3 number without relational operator?
int a=1,b=2,c=3; printf("%d,%d",a,b,c); What is the output?
Program to find the value of e raised to power x using while loop
Write a c code segment using a for loop that calculates and prints the sum of the even integers from 2 to 30, inclusive?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
When should you not use a type cast?
how to write optimum code to divide a 50 digit number with a 25 digit number??
what is difference between array of characters and string
What is a void * in c?
dynamically allocate memory for linear array of n integers,store some elements in it and find some of them
What is c basic?
struct screen_pos{ int row, col } ;move_right(cursor)struct screen_pos *cursor;{ cursor.col++; } /* This statementhas a syntax error */What is the correct statement a) cursor.col = cursor.col + 1; b) col.cursor++; c) *cursor.col++; d) pointer