What is undefined behavior?
Answer / nashiinformaticssolutions
A program behavior that is not defined by the C standard, e.g., dividing by zero.
| Is This Answer Correct ? | 0 Yes | 0 No |
can we declare a function in side the structure?
can we store values and addresses in the same array? explain
What is data structure in c language?
What is C++
Why is c so important?
Write the Program to reverse a string using pointers.
Given an array of length N containing integers between 1 and N, determine if it contains any duplicates.
#include<stdio.h> main() { int i=5; printf("%d",i*i-- - --i*i*i++ + ++i); } tell the answer with correct reason .specially reason is important nt answer ans by turbo c is -39
What is getch c?
#include <stdio.h> int main() { int i; for (i=0;i<3;++i) { fork();fork(); } } How many processes are created when running this program (including the initial one)? Explain ؟؟؟
write a program that will read the temperature in Celsius and convert that into Fahrenheit.
Write a program in C for showing working of different logical operator in C. Your program should guide users with proper message/menu on the console.