Which of the following operators is incorrect and why? ( >=, <=, <>, ==)
No Answer is Posted For this Question
Be the First to Post Answer
Why is it usually a bad idea to use gets()? Suggest a workaround.
How can I ensure that integer arithmetic doesnt overflow?
HOW TO SWAP TWO NOS IN ONE STEP?
implement NAND gate logic in C code without using any bitwise operatior.
4.A function 'q' that accepts a pointer to a character as argument and returns a pointer to an array of integer can be declared as: A)int (*q(char*)) [] B)int *q(char*) [] C)int(*q)(char*) [] D)None of the Above
what is the output of below int n=10; (n++)++; printf("%d",n);
Two's compliment of -5
#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?
2. Write a function called hms_to_secs() that takes three int values—for hours, minutes, and seconds—as arguments, and returns the equivalent time in seconds.. Create a program that exercises this function by repeatedly obtaining a time value in hours, minutes, and seconds from the user (format 12:59:59), calling the function, and displaying the value of seconds it returns.
Q. where is the below variables stored ? - volatile, static, register
what is difference between procedural language and functional language ?
How can I copy just a portion of a string?